Collections:
Bring a Tablespace Online in Oracle
How To Bring a Tablespace Online in Oracle?
✍: FYIcenter.com
If you have brought a tablespace offline, now you want to make it available to users again, you can use the ALTER TABLESPACE ... ONLINE statement as shown in the following script:
SQL> connect HR/fyicenter SQL> CREATE TABLESPACE my_space 2 DATAFILE '/temp/my_space.dbf' SIZE 10M; Tablespace created. SQL> ALTER TABLESPACE my_space OFFLINE NORMAL; Tablespace altered. ... SQL> ALTER TABLESPACE my_space ONLINE; Tablespace altered.
⇒ Add Another Datafile to a Tablespace in Oracle
⇐ Bring a Tablespace Offline in Oracle
2019-01-01, 2407🔥, 0💬
Popular Posts:
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...
Where to find SQL Server Transact-SQL language references? You can find SQL Server Transact-SQL lang...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
How To Provide Default Values to Function Parameters in SQL Server Transact-SQL? If you add a parame...
Where to find answers to frequently asked questions on Downloading and Installing SQL Server 2005 Ex...