alter tablespace in oracle |
||
alter tablespace TS add datafilealter tablespace ts_sth add datafile 'c:\xx\sth_04.dbf' size 4M autoextend off; Adding a datafile to a database is a structural change that requires a backup.
alter tablespace TS begin backupThis command can be used for a hot backup
alter tablespace TS end backupThis command can be used for a hot backup
alter tablespace flashback on | offalter tablespace TS force loggingThe entire database can be put into force logging mode using alter database force logging.
|