DBA Data[Home] [Help]

APPS.CSI_DIAGNOSTICS_PKG dependencies on DBMS_LOB

Line 3239: l_amount := dbms_lob.getlength(msg_rec.body_text);

3235: FOR msg_rec in msg_cur(l_freeze_date)
3236: LOOP
3237:
3238: l_amount := null;
3239: l_amount := dbms_lob.getlength(msg_rec.body_text);
3240: l_msg_text := null;
3241:
3242: dbms_lob.read(
3243: lob_loc => msg_rec.body_text,

Line 3242: dbms_lob.read(

3238: l_amount := null;
3239: l_amount := dbms_lob.getlength(msg_rec.body_text);
3240: l_msg_text := null;
3241:
3242: dbms_lob.read(
3243: lob_loc => msg_rec.body_text,
3244: amount => l_amount,
3245: offset => 1,
3246: buffer => l_msg_text );