一般的概况:TAB,DICTIONARY,DICT_COLUMNS 对象:DBA_TABLES,DBA_INDEXES,DBA_TAB_COLUMNS,DBA_CONSTRAINTS--->user_ ,all_ 空间分配:DBA_SEGMENTS,DBA_EXTENTS 数据库结构:DBA_TABLESPACES,DBA_DATA_FILES 动态性能视图: 是将内存里的数据或控制文件里的数据以表
一般的概况: TAB,DICTIONARY, DICT_COLUMNS 对象: DBA_TABLES, DBA_INDEXES, DBA_TAB_COLUMNS, DBA_CONSTRAINTS --->user_ ,all_ 空间分配: DBA_SEGMENTS, DBA_EXTENTS 数据库结构: DBA_TABLESPACES, DBA_DATA_FILES 动态性能视图: 是将内存里的数据或控制文件里的数据以表的形式展现出来,它们实际都是虚拟表,...
在OTN的Oracle9i Database Reference裡面有 所有的數據字典的明細資料。 select * from dict where table_name like '%SOUR%'; select * from dictionary where table_name like '%SOUR%'; select * from dict_columns; 資料庫相關:V$PARAMETER、V$INSTANCE、V$LOGFILE、 V$CONTROLFILE、V$DATAFILE、V$NLS_PARAMETE...
数据字典表(Data dictionary table)用以存储表、索引、约束以及其它数据库结构的信息,这些对象通常以“\$”结尾(例如:TAB\$、OBJ\$、TS\$等),在创建数据库的时候通过运行\$ORACLE_HOME/rdbms/admin/sql.bsq脚本来创建。 五、静态数据字典视图 由于X\$表和数据字典表通常不能直接被用户访问,Oracle创建了静态数据...
Scope of rows:(A) all check constraints with columns on a table accessible to the current user in Oracle database, (B) all check constraints with columns on a table in Oracle database Ordered byschema name and table name and column position ...
You can divide Oracle datatype support into three basic varieties: character datatypes, numeric datatypes, and datatypes that represent other kinds of data. You can use any of these datatypes when you create columns in a table, as with this SQL statement: CREATE TABLE SAMPLE_TABLE( char_field...
Database event triggers:事件触发器,如插入数据时会触发相应的事件。 任何数据库都会有一个SYSTEM tablespace,10g以后的数据库还必须有一个表空间叫SYSAUS(系统辅助空间),为SYS用户所拥有,由OracleServer直接管理,是只读的,即不能插入修改删除数据。 Base Table(基表)是核心,用户通常只和Views(视图)打交道。
• DATABASE_COMPATIBLE_LEVEL • DBMS_ALERT_INFO • DBMS_LOCK_ALLOCATED • DICT • DICTIONARY • DICT_COLUMNS • DUAL • GLOBAL_NAME • IND • INDEX_HISTOGRAM • INDEX_STATS • LOGSTDBY_UNSUPPORTED_TABLES • NLS_DATABASE_PARAMETERS ...
TABLE_PRIVILEGES USER_CATALOG USER_COL_COMMENTS USER_CONSTRAINTS USER_CONS_COLUMNS USER_INDEXES USER_OBJECTS USER_SYNONYMS USER_TABLES USER_TAB_COLUMNS USER_TAB_COMMENTS USER_USERS USER_VIEWS A.2DataDictionary View Tables This section contains tables that describe data dictionary views. DB2 UDB for ...
They are also temporary and the data in the index has the same session or transaction scope as the data in the underlying table. Alter Use the ALTER TABLE statement to alter the structure of a table. Examples:To add new columns addr, city, pin, ph, fax to employee table you can give...