Frequently Asked Questions on Tablespaces

Is it mandatory to create tables or index with the tablespace?

Whenever an object is created without mentioning the tablespace name, it gets stored in the default tablespace which causes it to get full early. Thus, it is good practice to add a tablespace name while creating an Oracle object.

Do we really need to care about Tablespace, can’t we add more storage when the primary one is full?

Definitely, DBAs can extend the datafiles or add another tablespace. However, storage comes with a price. More the storage, the higher the price.


Working on Oracle Tablespaces for Developers

A database, as defined by Oracle, is an organized collection of information typically stored electronically in a computer system. The explanation is simple, however, it’s not that simple to store the data.

The Database has a tablespace that stores all the data. Everything inside a database is stored in tablespace.

Tablespaces

Similar Reads

What is a Tablespace?

Tablespace in Oracle Database are logical storage units to store all the data. Logical storage units help users locate specific data and help in the retrieval of data....

Relationship Between PLSQL Developer and Oracle Tablespaces

The creation and extension of the tablespaces is part of DBA’s responsibilities but as an Oracle PL/SQL Developer, we might come across cases when the tablespace have issue and that’s where a simple knowledge about the tablespaces can help reduce the burden on the database....

Frequently Asked Questions on Tablespaces – FAQs

Is it mandatory to create tables or index with the tablespace?...