SQL table space usage statement in Oracle

Source: Internet
Author: User
Tags rtrim

If not exists (select * From DBO. sysobjects where id = object_id (n' [DBO]. [tablespaceinfo] ') and objectproperty (ID, n' isusertable') = 1)

Create Table tablespaceinfo -- create a temporary table
(Nameinfo varchar (50), -- table name
Rowsinfo int, -- number of existing rows in the table
Reserved varchar (20), -- total table space
Datainfo varchar (20), -- table data space
Index_size varchar (20), -- the amount of space used by the table Index
Unused varchar (20) -- amount of unused space in the table

Delete from tablespaceinfo

Declare @ tablename varchar (255)
Declare @ brief SQL varchar (500)

Declare info_cursor cursor
Select name
From DBO. sysobjects where objectproperty (ID, N 'istable') = 1
And name not like n' # % 'order by name

Open info_cursor

Fetch next from info_cursor
Into @ tablename

While @ fetch_status = 0
Begin

If exists (select * From DBO. sysobjects where id = object_id (@ tablename) and objectproperty (ID, N 'isusertable') = 1)
Execute sp_executesql
N 'insert into tablespaceinfo exec sp_spaceused @ tbname ',
N' @ tbname varchar (255 )',
@ Tbname = @ tablename

Fetch next from info_cursor
Into @ tablename
End

Close info_cursor
Deallocate info_cursor
Go

-- Tablespace Information
Select *
From tablespaceinfo
Order by cast (left (ltrim (rtrim (Reserved), Len (ltrim (rtrim (Reserved)-2) As INT) DESC

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.