as619864232 发表于 2013-1-14 08:56:09

Oracle 数据字典

<!-- ><xml><w:WordDocument><w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0</w:DisplayHorizontalDrawingGridEvery><w:DisplayVerticalDrawingGridEvery>2</w:DisplayVerticalDrawingGridEvery><w:DocumentKind>DocumentNotSpecified</w:DocumentKind><w:DrawingGridVerticalSpacing>7.8</w:DrawingGridVerticalSpacing><w:View>Normal</w:View><w:Compatibility></w:Compatibility><w:Zoom>0</w:Zoom></w:WordDocument></xml><!-->
 
<div class="Section0">§1.1.1 关系模型
一个描述两个集合的元素如何相互联系或如何一一对应的数学概念,对于数据库来说,
关系只是一个带有一些特殊属性的表。所以有:
� 数据的基础项是关系,在这些表上的操作只产生关系
一个关系表必须符合某些特定条件,才能成为关系模型的一部分
� 储存在单元中的数据必须是原子的。每个单元只能存储一条数据,叫信息原则(Information
Principle)。如果存储多条则违反信息原则。特舒情况下可能需要违反信息原则。
� 储存在列下的数据必须具有相同的数据类型。
� 每一行是唯一的(没有完全相同的行)。
� 列没有顺序。
� 行没有顺序
� 列有一个唯一性的名称。
 
关系模型的另一个是完整性原则,它包括实体完整性原则(Entity integrity rule)和引用
完整性原则( Referential integrity rule ),如:
� 主键( Primary key )是能唯一标识行的一列或一组列的集合。
� 由多个列构成的主键称为连接键(Concatenated key)、组合键(Compound key ),或称作为复合键(Composity key )。
另外就是外部键(Foreign key )是一个表中的一列或一组列,它们在其它表中作为主键而存在。一个表中的外部键被认为是对另外一个表中主键的引用。实体完整性原则简洁地表明主键不能全部或部分地空缺或为空,引用完整性原则简洁地表明一个外键必须为空或者它所引用的主键当前存在值相一致。
 
§1.2.0 关系数据库系统(RDBMS)的组成
RDBMS 由两部分组成,即数据库系统内核(软件)和数据字典(内核用于管理数据库系
统的数据结构)两部分。
 
§1.2.1 RDBMS 内核
RDBMS 就是用来控制数据访问的操作系统。它的任务是按照一定的规则存储数据、检
索数据及保护数据。
 
§1.2.2 数据字典概念
数据自动存放数据库中所有对象(如表,索引,视图等)所需的信息。Oracle 10g的数
据字典是存放数据库系统信息的一组表,从数据字典中的信息可以确认数据库中数据对象的
基本信息及存放位置。
 
§1.2.2 常用数据字典简介
ORACLE 提供许多内部数据字典, 用以管理系统的各种信息和参数(即数据库对象),下面列出几个常用的数据字典供初学者参考。
ORACLE 数据字典的命名说明:
USER 为前缀----记录用户的所有对象信息
ALL 为前缀----记录包括 USER 记录和授权给PUBLIC 或该用
户的所有对象的信息。
DBA 为前缀----记录关于数据库对象(非用户对象)的信息。
V$ 公共系统动态视图,用于系统优化和调整参考.
V_$ 动态性能视图
注:请注意下面的总结:
� 一般 DBA_ 的视图内容都包含USER_和ALL_为前缀的视图;
� DBA_为前缀的视图的内容基本上是大写;
� 以 V$_为前缀的视图的内容基本上是小写。
 
1. USER_TABLEs(=TABS) 用户的所有表的信息。
2.USER_TAB_COLUMNS(=COLS) 有关各表的列(字段)的信息
3.USER_VIEWS 用户的所有视图
4.USER_SYNONYMS(=SYN) 用户同义词
5.USER_SEQUENCES(=SEQ) 用户序列
6.USER_CONSTRAINTS 记录创建表结构时建立的限制。
7.USER_TAB_COMMENTS 表的注释。如:
Comment on table emp is '职工表';
8. USER_COL_COMMENTS 列(字段)注释。如:
Comment on column emp.ename is '姓名';
9. USER_INDEXES(=IND) 用户索引的简要信息
10. USER_IND_COLUMNS 用户索引的列信息
11. USER_TRIGGERS 用户触发器信息
12. USER_SOURCE 用户存储过程
13. USER_TABLESPACE 用户可以使用的表空间信息
14. USER_TS_QUOTAS 用户使用系统资源的信息
15. USER_SEGMENTS 用户对象所使用空间信息
16. USER_EXTENTS 用户的扩展段信息
17. USER_OBJECTS 用户对象
=USER_TABLES+USER_VIEWS+USER_INDEXES+
USER_SOURCE+USER_TRIGGERS+USER_JAVA
18. USER_PART_TABLES 用户分区信息
19. USER_TAB_PARTITIONS
20. USER_PART_COL_STATISTICS
21. USER_IND_PARTITIONS
22. USER_FREE_SPACE
23. CAT(=USER_CATALOG) 用户可以访问的所有的基表。
24. TAB 用户创建的所有基表,视图,同义词等。
25. DICT(=DICTIONARY) 构成数据字典的所有表的信息。
提示:虽然Oracle 提供可以用Comment on column tablename.column is 'xxxx'; 等来实现对表或列进行注释,但不建议设计者采用这样的工作方式。而建议将注释写到脚本中更为直观。
 
§1.2.2 表和索引数据字典
DBA_TABLES,ALL_TABLES,USER_TABLES 存放表的基本信息,主要包括创建表结构时描述
的信息,如表名,表空间,存储参数等;此外,还有一些信息是在分析表时由系统 自动
写进去的,比如,表的行数量、行平均字节等。
� DBA_INDEXES,ALL_INDEXES,USER_INDEXES 存放索引的基本信息,主要包括创建索引时描
述的信息和用ANALYZE 分析索引由系统自动写进去的信息。
� DBA_IND_COLUMNS 存放有索引的列的信息,因为Oracle 在分析创建索引的命令正确后
就将表名、索引名等存放到DBA_INDEXES 数据字典中,而将索引的列名存放到
DBA_IND_COLUMNS 数据字典中。所以,查询者需要了解两个数据字典才能查到索引的详细
信息。
� ALL_CONSTRAINTS 存放表的限制信息。
� ALL_CONS_COLUMNS 存放表的列的限制信息。
 
了解数据字典的目的就是查询有关表和索引的信息,下面是简单的查询例子。
例1.查询当前用户的表的基本信息,包括表名、存放的表空间、存储参数:
SQL> select table_name ,tablespace_name,initial_extent,next_extent from user_tables
SQL>
TABLE_NAME TABLESPACE_NAME INITIAL_EXTENT NEXT_EXTENT
------------------ ------------------ -------------- -----------
ACCESS$ SYSTEM 16384 106496
AQ$_MESSAGE_TYPES SYSTEM 65536 65536
AQ$_PENDING_MESSAGES SYSTEM 65536 65536
. . . . . .
 
例2.查询当前用户的索引的基本信息,包括表名、索引名及表空间、存储参数:
SQL> select index_name,tablespace_name,initial_extent,next_extent from all_indexes where owner=user;
INDEX_NAME TABLESPACE_NAME INITIAL_EXTENT NEXT_EXTENT
------------------------------ ------------------ -------------- -----------
AQ$_MSGTYPES_PRIMARY SYSTEM 65536 65536
AQ$_PROPAGATION_STATUS_PRIMARY SYSTEM 65536 65536
AQ$_QTABLE_AFFINITIES_PK SYSTEM 65536 65536
AQ$_QUEUE_STATITICS_PK SYSTEM 65536 65536
AQ$_SCHEDULES_PRIMARY SYSTEM 65536 65536
ASSOC1 SYSTEM 16384 16384
ASSOC2 SYSTEM 16384 16384
. . . . . .
这里的where owner=user 表示只查当前用户的索引.
 
例3.查询当前用户的索引及索引的列名:
SQL> col column_name for a40
SQL> col index_name for a18
SQL> select index_name,table_name,column_name from all_ind_columns
where table_owner=user;
INDEX_NAME TABLE_NAME COLUMN_NAME
------------------ ------------------ -----------------------------
I_ACCESS1 ACCESS$ D_OBJ#
I_ACCESS1 ACCESS$ ORDER#
AQ$_MSGTYPES_PRIMARY AQ$_MESSAGE_TYPES QUEUE_OID
 
例4.查询当前用户的限制信息,当我们创建表结构时,如果描述了限制,则这些限制就被存放
到DBA_CONSTRAINTS 数据字典中,看下面例子:
创建下面表结构:
Create table worker
( empno number(4) primary key,
name varchar2(10),
age number(2) CHECK(age between 18 and 65 ),
/* age number(2) CHECK( age >=18 and age<=65 ) */
lodging char(15) References LODGING(lodging)
);
查询数据字典信息可以得到:
SQL> select owner,constraint_name,table_name from user_constraints;
OWNER CONSTRAINT_NAME TABLE_NAME
-------------------- ------------------------------ -----------------
ZHAO SYS_C001009 WORKER
ZHAO SYS_C001009 WORKER
SQL> set long 1000
SQL> select SEARCH_CONDITION from user_constraints;
SEARCH_CONDITION
--------------------------------------------------------
age between 18 and 65
例5.创建表结构时描述了限制,则这些限制就被存放到DBA_CONSTRAINTS 数据字典中,再看
下面例子:
CREATE TABLE dept
(deptno number(2),
dname varchar2(20),
loc varchar2(20),
CONSTRAINT pk_dept PRIMARY KEY (deptno)
);
Create table empl
(
Empno number(5) primary key,
Ename varchar2(15) not null,
Job varchar2(10),
Mgr number(5),
Hiredate date default sysdate,
Sal number(7,2) CHECK(sal>100),
Comm number(3) default 0.0 ,
Dept number constraint
dept_fkey References zhao.dept
);
SQL> col CONSTRAINT_NAME for a12
SQL> select constraint_name,table_name,SEARCH_CONDITION * from user_constraints;
CONSTRAINT_N TABLE_NAME SEARCH_CONDITION
------------ ------------------ -------------------------
PK_DEPT DEPT
SYS_C001013 EMPL "ENAME" IS NOT NULL
SYS_C001014 EMPL sal>100
SYS_C001015 EMPL
DEPT_FKEY EMPL
SYS_C001009 WORKER age between 18 and 65
SYS_C001010 WORKER
已选择7 行。__
 
§1.2.2 视图、同义词和序列有关的数据字典
当我们创建了视图、同义词和序列后,相关的信息就被记录到Oracle 的数据字典中,作为程序人员和数据库管理员,应该了解有关数据字典的基本查询方法.
与视图、同义词和序列有关的数据字典有:
� DBA_VIEWS –实例中所有的视图的基本信息;
� DBA_SYNONYMS –实例中所有的同义词;
� DBA_SEQUENCES –实例中所有的序列。
 
§1.2.2 与用户、角色与权限有关的数据字典
与用户、角色、权限有关的数据字典主要有:
DBA_USERS 实例中有效的用户及相应信息。
V$SESSION 实例中会话的信息。
DBA_ROLES 实例中已经创建的角色的信息。
ROLE_TAB_PRIVS 授予角色的对象权限。
ROLE_ROLE_PRIVS 授予另一角色的角色。
ROLE_SYS_PRIVS 授予角色的系统权限。
DBA_ROLE_PRIVS 授予用户和角色的角色。
SESSION_ROLES 用户可用的角色的信息。
 
对于一般的软件人员来说,应该掌握对数据字典的基本查询,如:
例 1。查看当前已经创建了多少用户和用户缺省的表空间:
SQL> set line 120
SQL> col username for a26
SQL> col default_tablespace for a20
SQL> select username,DEFAULT_TABLESPACE,created from dba_users;
USERNAME DEFAULT_TABLESPACE CREATED
-------------------------- -------------------- ----------
SYS SYSTEM 05-12 月-01
SYSTEM TOOLS 05-12 月-01
OUTLN SYSTEM 05-12 月-01
DBSNMP SYSTEM 05-12 月-01
AURORA$JIS$UTILITY$ SYSTEM 05-12 月-01
OSE$HTTP$ADMIN SYSTEM 05-12 月-01
AURORA$ORB$UNAUTHENTICATED SYSTEM 05-12 月-01
ORDSYS SYSTEM 05-12 月-01
ORDPLUGINS SYSTEM 05-12 月-01
MDSYS SYSTEM 05-12 月-01
ZHAO USERS 07-12 月-01
SCOTT USERS 08-2 月 -02
已选择 12 行。
例2。查看当前已经创建了多少角色:
SQL> select * from dba_roles;
ROLE PASSWORD
------------------------------ --------
CONNECT NO
RESOURCE NO
DBA NO
SELECT_CATALOG_ROLE NO
EXECUTE_CATALOG_ROLE NO
DELETE_CATALOG_ROLE NO
EXP_FULL_DATABASE NO
IMP_FULL_DATABASE NO
RECOVERY_CATALOG_OWNER NO
AQ_ADMINISTRATOR_ROLE NO
AQ_USER_ROLE NO
ROLE PASSWORD
------------------------------ --------
SNMPAGENT NO
OEM_MONITOR NO
HS_ADMIN_ROLE NO
JAVAUSERPRIV NO
JAVAIDPRIV NO
JAVASYSPRIV NO
JAVADEBUGPRIV NO
JAVA_ADMIN NO
JAVA_DEPLOY NO
TIMESERIES_DEVELOPER NO
TIMESERIES_DBA NO
已选择22 行。
 
§1.2.2 与存储过程相关数据字典
user_source 用户的存储过程、函数的源代码字典
all_source 所有用户的存储过程、函数的源代码字典
user_errors 用户的存储过程、函数的源代码存在错误的信息字典
相关的权限:
create any procedure
drop any procedure
如果某个用户没有权限来创建存储过程,则需要 DBA 将创建过程的权限授予某用户。如:
sql>grant create any procedure to user1;
 
§1.2.2 包有关的数据字典
与 Oracle 系统的包有关的数据字典有:
DBA_SOURCE
DBA_ERRORS
 
1.DBA_SOURCE 数据字典:
DBA_SOURCE 数据字典存放有整个Oracle 系统的所有包、存储过程、函数的源代码。它的列及说明如下:
http://dl.iteye.com/upload/picture/pic/110583/cce77ab7-6cd9-3653-b020-be5234d1126f.png
 
视图名
描述
ALL_CATALOG
All tables, views, synonyms, sequences accessible to the user
ALL_COL_COMMENTS
Comments on columns of accessible tables and views
ALL_COL_GRANTS_MADE
Grants on columns for which the user is owner or grantor
ALL_COL_GRANTS_RECD
Grants on columns for which the user or PUBLIC is the grantee
ALL_COL_PRIVS
Grants on columns for which the user is the grantor, grantee, 
owner, or an enabled role or PUBLIC is the grantee
ALL_COL_PRIVS_MADE
Grants on columns for which the user is owner or grantor
ALL_COL_PRIVS_RECD
Grants on columns for which the user, PUBLIC or enabled role 
is the grantee
ALL_CONSTRAINTS
Constraint definitions on accessible tables
ALL_CONS_COLUMNS
Information about accessible columns in constraint definitions
ALL_DB_LINKS
Database links accessible to the user
ALL_DEF_AUDIT_OPTS
Auditing options for newly created objects
ALL_DEPENDENCIES
Dependencies to and from objects accessible to the user
ALL_ERRORS
Current errors on stored objects that user is allowed to create
ALL_INDEXES
Descriptions of indexes on tables accessible to the user
ALL_IND_COLUMNS
COLUMNs comprising INDEXes on accessible TABLES
ALL_OBJECTS
Objects accessible to the user
ALL_REFRESH
All the refresh groups that the user can touch
ALL_REFRESH_CHILDREN
All the objects in refresh groups, where the user can touch the group
ALL_SEQUENCES
Description of SEQUENCEs accessible to the user
ALL_SNAPSHOTS
Snapshots the user can look at
ALL_SOURCE
Current source on stored objects that user is allowed to create
ALL_SYNONYMS
All synonyms accessible to the user
ALL_TABLES
Description of tables accessible to the user
当前用户可以访问到的所有表情况
ALL_TAB_COLUMNS
Columns of all tables, views and clusters
表的列详情: USER_TAB_COLUMNS
ALL_TAB_COMMENTS
Comments on tables and views accessible to the user
ALL_TAB_GRANTS_MADE
User's grants and grants on user's objects
ALL_TAB_GRANTS_RECD
Grants on objects for which the user or PUBLIC is the grantee
ALL_TAB_PRIVS
Grants on objects for which the user is the grantor, grantee, 
owner, or an enabled role or PUBLIC is the grantee
ALL_TAB_PRIVS_MADE
User's grants and grants on user's objects
ALL_TAB_PRIVS_RECD
Grants on objects for which the user, PUBLIC or enabled role 
is the grantee
ALL_TRIGGERS
Triggers accessible to the current user
ALL_TRIGGER_COLS
Column usage in user's triggers or in triggers on user's tables
ALL_USERS
Information about all users of the database
ALL_VIEWS
Text of views accessible to the user
USER_AUDIT_CONNECT
Audit trail entries for user logons/logoffs
USER_AUDIT_OBJECT
Audit trail records for statements concerning objects,
specifically: table,cluster, view, index, sequence, 
 database link,  synonym, procedure, trigger, 
rollback segment, tablespace, role, user
USER_AUDIT_SESSION
 
USER_AUDIT_STATEMENT
Audit trail records concerning grant, revoke, audit, noaudit 
and alter system
USER_AUDIT_TRAIL
Audit trail entries relevant to the user
USER_CATALOG
Tables, Views, Synonyms and Sequences owned by the user
USER_CLUSTERS
Descriptions of user's own clusters
USER_CLU_COLUMNS
Mapping of table columns to cluster columns
USER_COL_COMMENTS
Comments on columns of user's tables and views
USER_COL_GRANTS
Grants on columns for which the user is the owner, grantor 
or grantee
USER_COL_GRANTS_MADE
All grants on columns of objects owned by the user
USER_COL_GRANTS_RECD
Grants on columns for which the user is the grantee
USER_COL_PRIVS
Grants on columns for which the user is the owner, grantor 
or grantee
USER_COL_PRIVS_MADE
All grants on columns of objects owned by the user
USER_COL_PRIVS_RECD
Grants on columns for which the user is the grantee
USER_CONSTRAINTS
Constraint definitions on user's own tables
USER_CONS_COLUMNS
Information about accessible columns in constraint definitions
USER_CROSS_REFS
Cross references for user's views and synonyms
USER_DB_LINKS
Database links owned by the user
USER_DEPENDENCIES
Dependencies to and from a users objects
USER_ERRORS
Current errors on stored objects owned by the user
USER_EXTENTS
Extents comprising segments owned by the user
USER_FREE_SPACE
Free extents in tablespaces accessible to the user
USER_INDEXES
Description of the user's own indexes
USER_IND_COLUMNS
COLUMNs comprising user's INDEXes or on user's TABLES
USER_JOBS
All jobs owned by this user
USER_OBJECTS
Objects owned by the user
USER_OBJECT_SIZE
Sizes, in bytes, of various pl/sql objects
USER_OBJ_AUDIT_OPTS
Auditing options for user's own tables and views
USER_REFRESH
All the refresh groups
USER_REFRESH_CHILDREN
All the objects in refresh groups, where the user owns the 
refresh group
USER_RESOURCE_LIMITS
Display resource limit of the user
USER_ROLE_PRIVS
Roles granted to current user
当前用户的角色权限赋予情况(无法查看别的用户的角色-情况)
USER_SEGMENTS
Storage allocated for all database segments
USER_SEQUENCES
Description of the user's own SEQUENCEs
USER_SNAPSHOTS
Snapshots the user can look at
USER_SNAPSHOT_LOGS
All snapshot logs owned by the user
USER_SOURCE
Source of stored objects accessible to the user
USER_SYNONYMS
The user's private synonyms
USER_SYS_PRIVS
System privileges granted to current user
用户具有的系统权限(查询出来的列admin_option,如果该列的
值是YES,表示此权限此用户可以继续往外派生,赋予)
USER_TABLES
Description of the user's own tables
当前用户可以访问到的用户拥有的表的情况
USER_TABLESPACES
Description of accessible tablespaces
USER_TAB_AUDIT_OPTS
Auditing options for user's own tables and views
USER_TAB_COLUMNS
Columns of user's tables, views and clusters
USER_TAB_COMMENTS
Comments on the tables and views owned by the user
USER_TAB_GRANTS
Grants on objects for which the user is the owner, grantor 
or grantee
USER_TAB_GRANTS_MADE
All grants on objects owned by the user
USER_TAB_GRANTS_RECD
Grants on objects for which the user is the grantee
USER_TAB_PRIVS
Grants on objects for which the user is the owner, grantor 
or grantee
表的权限情况,比如你下面哪些表给了权限给别人,或别人哪些表
给了你权限, USER_ROL_PRIVS
USER_TAB_PRIVS_MADE
All grants on objects owned by the user
USER_TAB_PRIVS_RECD
Grants on objects for which the user is the grantee
USER_TRIGGERS
Triggers owned by the user
USER_TRIGGER_COLS
Column usage in user's triggers
USER_TS_QUOTAS
Tablespace quotas for the user
USER_USERS
Information about the current user
USER_VIEWS
Text of views owned by the user
AUDIT_ACTIONS
Description table for audit trail action type codes. Maps 
action type numbers to action type names
COLUMN_PRIVILEGES
Grants on columns for which the user is the grantor, 
grantee, owner, or an enabled role or PUBLIC is the grantee
DICTIONARY
Description of data dictionary tables and views
DICT_COLUMNS
Description of columns in data dictionary tables and views
DUAL
 
GLOBAL_NAME
global database name
INDEX_HISTOGRAM
statistics on keys with repeat count
INDEX_STATS
statistics on the b-tree
RESOURCE_COST
Cost for each resource
ROLE_ROLE_PRIVS
Roles which are granted to roles
ROLE_SYS_PRIVS
System privileges granted to roles
ROLE_TAB_PRIVS
Table privileges granted to roles
SESSION_PRIVS
Privileges which the user currently has set
SESSION_ROLES
Roles which the user currently has enabled.
TABLE_PRIVILEGES
Grants on objects for which the user is the grantor, grantee, 
owner, or an enabled role or PUBLIC is the grantee
ACCESSIBLE_COLUMNS
Synonym for ALL_TAB_COLUMNS
ALL_COL_GRANTS
Synonym for COLUMN_PRIVILEGES
ALL_JOBS
Synonym for USER_JOBS
ALL_TAB_GRANTS
Synonym for TABLE_PRIVILEGES
CAT
Synonym for USER_CATALOG
CLU
Synonym for USER_CLUSTERS
COLS
Synonym for USER_TAB_COLUMNS
DBA_AUDIT_CONNECT
Synonym for USER_AUDIT_CONNECT
DBA_AUDIT_RESOURCE
Synonym for USER_AUDIT_RESOURCE
DBA_REFRESH_CHILDREN
Synonym for USER_REFRESH_CHILDREN
DICT
Synonym for DICTIONARY
IND
Synonym for USER_INDEXES
OBJ
Synonym for USER_OBJECTS
SEQ
Synonym for USER_SEQUENCES
SM$VERSION
Synonym for SM_$VERSION
SYN
Synonym for USER_SYNONYMS
TABS
Synonym for USER_TABLES
V$ACCESS
Synonym for V_$ACCESS
V$ARCHIVE
Synonym for V_$ARCHIVE
V$BACKUP
Synonym for V_$BACKUP
V$BGPROCESS
Synonym for V_$BGPROCESS
V$CIRCUIT
Synonym for V_$CIRCUIT
V$COMPATIBILITY
Synonym for V_$COMPATIBILITY
V$COMPATSEG
Synonym for V_$COMPATSEG
V$CONTROLFILE
Synonym for V_$CONTROLFILE
V$DATABASE
Synonym for V_$DATABASE
V$DATAFILE
Synonym for V_$DATAFILE
V$DBFILE
Synonym for V_$DBFILE
V$DBLINK
Synonym for V_$DBLINK
V$DB_OBJECT_CACHE
Synonym for V_$DB_OBJECT_CACHE
V$DISPATCHER
Synonym for V_$DISPATCHER
V$ENABLEDPRIVS
Synonym for V_$ENABLEDPRIVS
V$FILESTAT
Synonym for V_$FILESTAT
V$FIXED_TABLE
Synonym for V_$FIXED_TABLE
V$LATCH
Synonym for V_$LATCH
V$LATCHHOLDER
Synonym for V_$LATCHHOLDER
V$LATCHNAME
Synonym for V_$LATCHNAME
V$LIBRARYCACHE
Synonym for V_$LIBRARYCACHE
V$LICENSE
Synonym for V_$LICENSE
V$LOADCSTAT
Synonym for V_$LOADCSTAT
V$LOADTSTAT
Synonym for V_$LOADTSTAT
V$LOCK
Synonym for V_$LOCK
V$LOG
Synonym for V_$LOG
V$LOGFILE
Synonym for V_$LOGFILE
V$LOGHIST
Synonym for V_$LOGHIST
V$LOG_HISTORY
Synonym for V_$LOG_HISTORY
V$MLS_PARAMETERS
Synonym for V_$MLS_PARAMETERS
V$MTS
Synonym for V_$MTS
V$NLS_PARAMETERS
Synonym for V_$NLS_PARAMETERS
V$NLS_VALID_VALUES
Synonym for V_$NLS_VALID_VALUES
V$OPEN_CURSOR
Synonym for V_$OPEN_CURSOR
V$OPTION
Synonym for V_$OPTION
V$PARAMETER
Synonym for V_$PARAMETER
V$PQ_SESSTAT
Synonym for V_$PQ_SESSTAT
V$PQ_SLAVE
Synonym for V_$PQ_SLAVE
V$PQ_SYSSTAT
Synonym for V_$PQ_SYSSTAT
V$PROCESS
Synonym for V_$PROCESS
V$QUEUE
Synonym for V_$QUEUE
V$RECOVERY_LOG
Synonym for V_$RECOVERY_LOG
V$RECOVER_FILE
Synonym for V_$RECOVER_FILE
V$REQDIST
Synonym for V_$REQDIST
V$RESOURCE
Synonym for V_$RESOURCE
V$ROLLNAME
Synonym for V_$ROLLNAME
V$ROLLSTAT
Synonym for V_$ROLLSTAT
V$ROWCACHE
Synonym for V_$ROWCACHE
V$SESSION
Synonym for V_$SESSION
V$SESSION_CURSOR_CACHE
Synonym for V_$SESSION_CURSOR_CACHE
V$SESSION_EVENT
Synonym for V_$SESSION_EVENT
V$SESSION_WAIT
Synonym for V_$SESSION_WAIT
V$SESSTAT
Synonym for V_$SESSTAT
V$SESS_IO
Synonym for V_$SESS_IO
V$SGA
Synonym for V_$SGA
V$SGASTAT
Synonym for V_$SGASTAT
V$SHARED_SERVER
Synonym for V_$SHARED_SERVER
V$SQLAREA
Synonym for V_$SQLAREA
V$STATNAME
Synonym for V_$STATNAME
V$SYSSTAT
Synonym for V_$SYSSTAT
V$SYSTEM_CURSOR_CACHE
Synonym for V_$SYSTEM_CURSOR_CACHE
V$SYSTEM_EVENT
Synonym for V_$SYSTEM_EVENT
V$THREAD
Synonym for V_$THREAD
V$TIMER
Synonym for V_$TIMER
V$TRANSACTION
Synonym for V_$TRANSACTION
V$TYPE_SIZE
Synonym for V_$TYPE_SIZE
V$VERSION
Synonym for V_$VERSION
V$WAITSTAT
Synonym for V_$WAITSTAT
V$_LOCK
Synonym for V_$_LOCK
<img alt="">
页: [1]
查看完整版本: Oracle 数据字典