How to view all of the table spaces for Oracle ____oracle

Source: Internet
Author: User
(recommended) Method one:

Select Dbf.tablespace_name,
Dbf.totalspace "Total (M)",
Dbf.totalblocks as total block number,
Dfs.freespace "Total surplus (M)",
Dfs.freeblocks "Number of remaining blocks",
(dfs.freespace/dbf.totalspace) * 100 "free ratio"
From (select T.tablespace_name,
SUM (t.bytes)/1024/1024 Totalspace,
SUM (t.blocks) totalblocks
From Dba_data_files t
Group by T.tablespace_name) DBF,
(Select Tt.tablespace_name,
SUM (tt.bytes)/1024/1024 FreeSpace,
SUM (tt.blocks) freeblocks
From Dba_free_space TT
GROUP by Tt.tablespace_name) DFS

where trim (dbf.tablespace_name) = Trim (dfs.tablespace_name)


Method Two:

Select Total.name "tablespace name",
Free_space, (total_space-free_space) Used_space, Total_space
From
(select Tablespace_name, sum (bytes/1024/1024) free_space
From Sys.dba_free_space
GROUP BY Tablespace_name
) Free,
(select B.name, sum (bytes/1024/1024) total_space
From Sys.v_$datafile A, sys.v_$tablespace B
where a.ts# = b.ts#
GROUP BY B.name
) Total
WHERE Free.tablespace_name = Total.name

Method Three:

Select * from Dba_tablespaces

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.