-
Hi Friends,
Can anyone give me a script which gives me output of free space in the tablespace including the largest contigous block.
The second help I want is,
Does anyone give the PPS (power point slide) presentation on STANDBY DATABASE.
Thanks,
UpeshP
-
Code:
select tablespace_name, sum(bytes), max(bytes) from dba_free_space
group by tablespace_name;
Sanjay
-
Dear Sanjay,
Where it is giving the Largest Contiguous Extents size in your script ?
thanks
-
max(byte) is the largest free chunk of space.
Sanjay
-
Thanks,
Sanjay,
Can anyone helps me in my second problem ?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|