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.
Latest Answer : The components of a Physical Structure of a Database are as Follows:1.Control Files2.Redolog Files3.Data Files. ...
Tablespaces and the Database's Schema Objects.
Latest Answer : Oracle Database has Physical and Logical Structure. In Logical Structure contains System tablespace and no of tablespace in database. these tablespace contains datafiles from physical database datafiles ...
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.
Latest Answer : Every Oracle Database contains a tablespace called system tablespace.This tablespace gets created at the time of database creation and it holds data dictionary information for the entire database. ...
A table is the basic unit of data storage in an ORACLE database. The tables of a database hold all of the user accessible data. Table data is stored in rows and columns.
Latest Answer : Table is data base object which stores the data in the logical representatiom in form of rows n coluns which is existing in two dimension form... and is stored in the databse. ...
There are two types of Synonyms Private and Public.
Indexes are automatically maintained and used by ORACLE. Changes to table data are automatically incorporated into all relevant indexes.
Latest Answer : Index is a Database object . It can be accessed rows physical fast. when you move the table from different table spaces or same table spaces indexes will unusually status. So You compulsory rebuild the index. Rebuilding the index is very fast than drop ...
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.
Latest Answer : Oracle Data Blocks is logical storage unit of Oracle and One Oracle Data Blocks containts multiple of Operating system Blocks. Data blocks contains contigous of Bytes. ...
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
Latest Answer : stansard block size, which is set with parameter DB_BLOCK_SIZE cannot be changed after creating database. We can set non standard parameter size later with parameter DB_nk_BLOCK_SIZE and it can be changed.NOTE: Standard block size cnannot be equal ...
An Extent is a specific number of contiguous data blocks, obtained in a single allocation, and used to store a specific type of information.
Latest Answer : An extent is a logical unit of database storage space allocation made up of a number of contiguous data blocks. One or more extents in turn make up a segment. When the existing space in a segment is completely used, Oracle allocates a new extent for the ...
Data Segment, Index Segment, Rollback Segment and Temporary Segment.
Latest Answer : Data, index , rollback, undo,cluster ...