I want to find the size....
sql>show parameter db_block_size;
Name Type Value
-----------------------------------------------------------
db_block_size integer 8192
How to check the size in Oracle 9i
sql>select segment_name ,bytes/1024 as totsize_bytes, (blocks * 8192)/1024 as totbytes from user_segments where segment_name = upper('&1') and segment_type='TABLE';
Enter value for 1:
If you put any segment name and then you will see that table size.
Getting IP Address of DB Server
1 day ago
0 comments:
Post a Comment