Oracle Query LOB Field size

Source: Internet
Author: User

SELECT DISTINCT AB. TABLE_NAME,
Ab. Segment_name,
Ab. Tablespace_name,
Ab. OWNER,
Sum (AC. bytes/1024/1024/1024) GB
From Dba_lobs AB, dba_segments AC
where AB. OWNER in (SELECT USERNAME
From Dba_users A
WHERE a.account_status = ' OPEN '
and A.default_tablespace not in
(' SYSTEM ',
' USERS ',
' Sysaux ',))
and AB. Segment_name = Ac.segment_name
and AB. OWNER = Ac.owner
--and AB. Tablespace_name = ' Lob_data '
GROUP by AB. TABLE_NAME, AB. Segment_name, AB. Tablespace_name, AB. OWNER
ORDER BY 5 Desc

---Querying single-partition LOB field sizes for single-table (partitioned tables)

SELECT DLP. TABLE_NAME,
Dlp. COLUMN_NAME,
Dlp. Partition_name,
Ds. bytes/1024/1024/1024 GB
From Dba_lob_partitions DLP
Left JOIN dba_segments DS
On (DLP. Lob_partition_name = DS. Partition_name)
WHERE DLP. table_name = ' T_test
and DS. segment_name = ' sys_lob0000318949c00003$$ ';

Oracle Query LOB Field size

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.