2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

26
mhouri/getLOBname.sql Normal file
View File

@@ -0,0 +1,26 @@
--******************************************************************
-- |Name : getLOBname |
-- |Date : 08 2022 |
-- |Author : Mohamed Houri |
-- | |
--******************************************************************
col owner for a30
col table_name for a30
col segment_type for a30
col segment_name for a30
SELECT
a.owner
,b.table_name
,a.segment_type
,a.segment_name
FROM
dba_segments a
,dba_lobs b
WHERE
a.owner = b.owner
AND a.segment_name = b.segment_name
AND a.segment_name ='&lob_seg_name'
AND a.segment_type like '%LOB%';
;