数据字典就是系统表,数据库自己带的。
除此之外就是用户自己建的用户表。

解决方案 »

  1.   

    那还讲什么"数据字典",讲"系统表"不就可以,是不是还有其他意思????
      

  2.   

    which is a read-only set of tables that provides information about the database. A data dictionary contains: The definitions of all schema objects in the database (tables, views, indexes, clusters, synonyms, sequences, procedures, functions, packages, triggers, and so on) How much space has been allocated for, and is currently used by, the schema objects Default values for columns Integrity constraint information The names of Oracle users Privileges and roles each user has been granted Auditing information, such as who has accessed or updated various schema objects Other general database information The data dictionary is structured in tables and views, just like other database data. All the data dictionary tables and views for a given database are stored in that database's SYSTEM tablespace. Not only is the data dictionary central to every Oracle database, it is an important tool for all users, from end users to application designers and database administrators. To access the data dictionary, use SQL statements. Because the data dictionary is read-only, you can issue only queries (SELECT statements) against the tables and views of the data dictionary. 
      

  3.   

    对啊,数据库中的数据表视图的等等的信息都是存储在数据库中的表中的,就是数据字典了,对用户来说,数据字典是不可以自己来修改的/