Collections:
Create Additional Tablespaces in Oracle
How To Create Additional Tablespaces for an New Database in Oracle?
✍: FYIcenter.com
This is Step 8. Creating additional tablespaces can be done by using the CREATE TABLESPACE statement as shown in the following sample script:
SQL> CREATE TABLESPACE users 2 DATAFILE '/oraclexe/oradata/FYI/users01.dbf' SIZE 10M; SQL> CREATE TABLESPACE indx 2 DATAFILE '/oraclexe/oradata/FYI/indx01.dbf' SIZE 10M;
⇒ Build Data Dictionary View in Oracle
⇐ Running CREATE DATABASE Statement Again in Oracle
2019-03-27, 2329🔥, 0💬
Popular Posts:
Collections: Interview Questions MySQL Tutorials MySQL Functions Oracle Tutorials SQL Server Tutoria...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...
Is SQL Server Transact-SQL case sensitive? No. Transact-SQL is not case sensitive. Like the standard...
What Are Bitwise Operations in SQL Server Transact-SQL? Bitwise operations are binary operations per...