|
Re: How do I extend the table space for a database? [message #98000 is a reply to message #97997] |
Thu, 02 October 2003 16:12 |
Thiru
Messages: 1089 Registered: May 2002
|
Senior Member |
|
|
You can either add a datafile to the tablespace
eg)
alter tablespace users add datafile '/oradata/users2.dbf' size 200m;
or resize (increase) the datafile
eg)
alter database datafile '/oradata/users1.dbf' resize 200m;
Also you can AUTOEXTEND the datafile,but I generally want to be in control !
No you dont have to bring down the database.
-Thiru
|
|
|