Basic Oracle Concepts and Programming Question:

Download Job Interview Questions and Answers PDF

How To Create Additional Tablespaces for an New Database?

Oracle Database Interview Question
Oracle Database Interview Question

Answer:

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/ggl/users01.dbf' SIZE 10M;

SQL> CREATE TABLESPACE indx
2 DATAFILE '/oraclexe/oradata/ggl/indx01.dbf' SIZE 10M;


Download Oracle Database Interview Questions And Answers PDF

Previous QuestionNext Question
How To Run CREATE DATABASE Statement Again?How To Build Data Dictionary View an New Database?