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

Thread: increase index tablespace

Threaded View

  1. #13
    Join Date
    Apr 2001
    Location
    Brisbane, Queensland, Australia
    Posts
    1,203
    THis is tag team time...

    Right, now one of thoise users needs to have their quota increased on the tablespace INDX.

    select username, tablespace_name, bytes from dba_ts_quotas
    where tablespace_name = 'INDX';


    select owner, sum(bytes/1024/1024) from dba_segments
    where owner in ('REP1', 'REP2') and tablespace_name = 'INDX'
    group by owner;
    Last edited by grjohnson; 12-11-2002 at 12:03 AM.
    OCP 8i, 9i DBA
    Brisbane Australia

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