DBAsupport.com Forums - Powered by vBulletin
Results 1 to 5 of 5

Thread: Contigous Extent

  1. #1
    Join Date
    Mar 2001
    Posts
    131
    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

  2. #2
    Join Date
    Feb 2000
    Location
    Singapore
    Posts
    1,758
    Code:
    select tablespace_name, sum(bytes), max(bytes) from dba_free_space
    group by tablespace_name;
    Sanjay

  3. #3
    Join Date
    Mar 2001
    Posts
    131
    Dear Sanjay,

    Where it is giving the Largest Contiguous Extents size in your script ?

    thanks

  4. #4
    Join Date
    Feb 2000
    Location
    Singapore
    Posts
    1,758
    max(byte) is the largest free chunk of space.

    Sanjay

  5. #5
    Join Date
    Mar 2001
    Posts
    131
    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
  •  


Click Here to Expand Forum to Full Width