Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ストアド プロシージャから出力パラメータとして SYSREFCUROSOR を取得しています。Oracle スケジューラ ジョブでその SP を呼び出して、そのパラメータを渡すにはどうすればよいですか?
ref カーソルを破棄する場合は、それを行うラッパー プロシージャを作成します。何かのようなもの:
create procedure wrapper_proc as l_refcursor sys_refcursor; begin orig_proc(l_refcursor); close l_refcursor; end; /
代わりに、スケジュールされたジョブでラッパー プロシージャを呼び出します。