DBA Data[Home] [Help]

SYS.DBMS_METADATA dependencies on DBMS_LOB

Line 402: -- lob_duration - either DBMS_LOB.SESSION (default)

398:
399: -- FETCH_CLOB: Return metadata for object (transformed or not) as a CLOB.
400: -- PARAMETERS: handle - Context handle from previous OPEN call.
401: -- cache_lob - TRUE = read LOB into buffer cache
402: -- lob_duration - either DBMS_LOB.SESSION (default)
403: -- or DBMS_LOB.CALL, the duration for the termporary lob
404: -- RETURNS: XML metadata for the objects as a CLOB, or NULL if all
405: -- objects have been fetched.
406:

Line 403: -- or DBMS_LOB.CALL, the duration for the termporary lob

399: -- FETCH_CLOB: Return metadata for object (transformed or not) as a CLOB.
400: -- PARAMETERS: handle - Context handle from previous OPEN call.
401: -- cache_lob - TRUE = read LOB into buffer cache
402: -- lob_duration - either DBMS_LOB.SESSION (default)
403: -- or DBMS_LOB.CALL, the duration for the termporary lob
404: -- RETURNS: XML metadata for the objects as a CLOB, or NULL if all
405: -- objects have been fetched.
406:
407: FUNCTION fetch_clob (handle IN NUMBER,

Line 409: lob_duration IN PLS_INTEGER DEFAULT DBMS_LOB.SESSION)

405: -- objects have been fetched.
406:
407: FUNCTION fetch_clob (handle IN NUMBER,
408: cache_lob IN BOOLEAN DEFAULT TRUE,
409: lob_duration IN PLS_INTEGER DEFAULT DBMS_LOB.SESSION)
410: RETURN CLOB;
411:
412:
413: -- PROCEDURE FETCH_CLOB: Same as above but with IN/OUT NOCOPY CLOB. CLOB