2026-03-12 20:23:15
This commit is contained in:
36
csierra/cs_internal/cs_lobs_internal.sql
Normal file
36
csierra/cs_internal/cs_lobs_internal.sql
Normal file
@@ -0,0 +1,36 @@
|
||||
COL owner FOR A30;
|
||||
COL table_name FOR A30;
|
||||
COL tablespace_name FOR A30;
|
||||
COL column_name FOR A30;
|
||||
COL segment_name FOR A30;
|
||||
COL index_name FOR A30;
|
||||
COL encrypt FOR A8;
|
||||
COL compression FOR A12;
|
||||
COL deduplication FOR A14;
|
||||
COL in_row FOR A7;
|
||||
COL partitioned FOR A12;
|
||||
COL securefile FOR A11;
|
||||
--
|
||||
SELECT l.owner,
|
||||
l.table_name,
|
||||
l.tablespace_name,
|
||||
l.column_name,
|
||||
l.segment_name,
|
||||
l.index_name,
|
||||
l.cache,
|
||||
l.encrypt,
|
||||
l.compression,
|
||||
l.deduplication,
|
||||
l.in_row,
|
||||
l.partitioned,
|
||||
l.securefile
|
||||
FROM dba_lobs l
|
||||
WHERE l.table_name = COALESCE('&&specific_table.', l.table_name)
|
||||
AND l.owner = COALESCE('&&specific_owner.', l.owner)
|
||||
ORDER BY
|
||||
l.owner,
|
||||
l.table_name,
|
||||
l.tablespace_name,
|
||||
l.column_name
|
||||
/
|
||||
|
||||
Reference in New Issue
Block a user