Can a Tablespace hold objects from different Schemes ? |
Yes. |
Post/View Answer
Post comment
Cancel
Thanks for your comment.!
Write a comment(Click here) ...
|
What are the components of Physical database structure of Oracle Database? |
ORACLE database is comprised of three types of files. One or more Data files, two are more Redo Log files, and one or more Control files. |
What are the components of Logical database structure of ORACLE database? |
Tablespaces and the Database's Schema Objects. |
What is a Tablespace? |
A database is divided into Logical Storage Unit called tablespaces. A tablespace is used to grouped related logical structures together. |
What is SYSTEM tablespace and When is it Created? |
Every ORACLE database contains a tablespace named SYSTEM, which is automatically created when the database is created. The SYSTEM tablespace always contains the data dictionary tables for the entire database. Explain the relationship among Database, Tablespace and Data file. Each databases logically divided into one or more tablespaces One or more data files are explicitly created for each tablespace. |
What is schema? |
A schema is collection of database objects of a User. |
What are Schema Objects ? |
Schema objects are the logical structures that directly refer to the database's data. Schema objects include tables,views,sequences,synonyms, indexes, clusters, database triggers, procedures, functions packages and database links. |
|
Can objects of the same Schema reside in different tablespaces.? |
Yes. |
What is Data Block? |
ORACLE database's data is stored in data blocks. One data block corresponds to a specific number of bytes of physical database space on disk. |
How to define Data Block size? |
A data block size is specified for each ORACLE database when the database is created. A database users and allocated free database space in ORACLE datablocks. Block size is specified in INIT.ORA file and cann't be changed latter. |
|
What is Row Chaining? |
In Circumstances, all of the data for a row in a table may not be able to fit in the same data block. When this occurs, the data for the row is stored in a chain of data block (one or more) reserved for that segment. |
What is an Extent? |
An Extent is a specific number of contiguous data blocks, obtained in a single allocation, used to store a specific type of information. |
What is a Segment? |
A segment is a set of extents allocated for a certain logical structure. |
What are the different types of Segments? |
Data Segment, Index Segment, Rollback Segment and Temporary Segment. |
What is a Data Segment? |
Each Non-clustered table has a data segment. All of the table's data is stored in the extents of its data segment. Each cluster has a data segment. The data of every table in the cluster is stored in the cluster's data segment. |
What is an Index Segment? |
Each Index has an Index segment that stores all of its data. |
What is Rollback Segment? |
A Database contains one or more Rollback Segments to temporarily store undo information. |