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

Thread: Unable to extend table

  1. #1
    Join Date
    Sep 2000
    Posts
    103

    Hi ,

    I'm getting this error:

    Unable to extend table emp by 15552 in tablespace users

    How do I rectify this ?

    Thanks

    pst

  2. #2
    Join Date
    Feb 2000
    Location
    Washington DC
    Posts
    1,843
    your table EMP needs 15552 bytes of chunk in users tablespace which it can't find.

    Reasons(solution):

    Its might have been fragmented(Try Coalesciing users with "ALTER TABLESPACE users COALESCE;"
    Its might have been ran outta space (add space by resizing/adding datafile)





  3. #3
    Join Date
    Sep 2000
    Posts
    14
    Quick fix in this situation is to see how much free space you have in the tablespace from DBA_FREE_SPACE and then Alter table ..... storage (NEXT .......) so that it will fit.

    Then find out why you had the problem. ANALYZE the table and try to establish a growth pattern.

    Check the available disk space and add a new datafile with Autoextend ON.

    Run Alter table .... storage (NEXT .....) again after you have some idea of what its future requirements are.

    Good DBA's know their data.

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