728x90
create or replace procedure my_proc( p_rc OUT SYS_REFCURSOR )
as
begin
open p_rc
for select 1 col1
from dual;
end;
/
variable rc refcursor;
exec my_proc( :rc );
print rc;
'데이터베이스 > 오라클' 카테고리의 다른 글
다중 인서트 insert all 오라클 쿼리문 (0) | 2011.03.07 |
---|---|
[펌] 유용한 오라클 쿼리 정리 (0) | 2011.03.07 |
오라클 정규식 사용 팁 (0) | 2010.11.05 |
Protected: Presentation Scripts (0) | 2010.09.29 |
Oracle DBA Scripts and Tips (0) | 2010.09.28 |