tablespace
Sign in to saveA tablespace is a storage location where the actual data underlying database objects can be kept. It provides a layer of abstraction between physical and logical data,
Wikidata facts
Show 1 more fact
- Stack Exchange tag
- stackoverflow.com/tags/tablespace
Sources (1)
via Wikidata · CC0
~2 min read
Article
2 sectionsContents
- Overview
- References
A tablespace is a storage location where the actual data underlying database objects can be kept. It provides a layer of abstraction between physical and logical data, and serves to allocate storage for all DBMS managed segments. (A database segment is a database object which occupies physical space such as table data and indexes.) Once created, a tablespace can be referred to by name when creating database segments.
== Overview == Tablespaces specify only the database storage locations, not the logical database structure, or database schema. For instance, different objects in the same schema may have different underlying tablespaces. Similarly, a tablespace may service segments for more than one schema. Sometimes it can be used to specify schema so as to form a bond between logical and physical data.