|
Re: when database is full [message #65833 is a reply to message #65832] |
Thu, 06 January 2005 20:36 |
Frank Naude
Messages: 4587 Registered: April 1998
|
Senior Member |
|
|
Hi,
Then you need to add files to the database's tablespaces, or make the existing datafiles autoextensible.
To add space to a tablespace:
ALTER TABLESPACE ... ADD DATAFILE ...
To make datafiles autoextensible:
ALTER DATABASE DATAFILE '...' AUTOEXTEND ON;
BTW: If you don't like commands, you can add space from the Enterprise Manager GUI.
Best regards.
Frank
|
|
|