Show_space : Table space « Table « Oracle PL / SQL






Show_space

  
SQL>
SQL>
SQL>
SQL>
SQL> create table t as select * from all_objects;

Table created.

SQL>
SQL> create index t_idx on t(owner,object_type,object_name);

Index created.

SQL>
SQL> exec show_space('T_IDX',user,'INDEX')
Free Blocks
0
Total Blocks
80
Total Bytes
655360
Unused Blocks
7
Unused Bytes
57344
Last Used Ext FileId
1
Last Used Ext BlockId
42905
Last Used Block
1

PL/SQL procedure successfully completed.

SQL>
SQL> drop index t_idx;

Index dropped.

SQL>
SQL> drop table t;

Table dropped.

SQL> --

   
  








Related examples in the same category

1.Change user default table space and temporary table space
2.Get default table space for current user
3.Moving Tables To New Tablespaces or Storage
4.heap table
5.Check space with show_space for an index with compress 1
6.Check space with show_space for an index with compress 2
7.Create two indexes on one table and check the space
8.alter tablespace
9.Map user objects to tablespaces.
10.Measure the fragmentation of free space in all of the tablespaces in a database
11.The plsql user is created using the USERS and TEMP tablespace.