|
Oracle data dictionary is the heart of an oracle database. It comprises of read-only set of tables that provide information about every possible aspect of the oracle database. The data dictionary holds definitions of schema objects, space allocation, database security, audit information etc. Oracle data dictionary is stored in the system tablespace and is structured in tables and views just like other database data. SQL statements are used to access the information contained in the data dictionary. Oracle data dictionary is read only, and only select queries can be run against the tables and views. Do not attempt to alter or manipulate the oracle data dictionary since it can permanently damage the integrity of the database
|