Chinaunix首页 | 论坛 | 博客
  • 博客访问: 927723
  • 博文数量: 358
  • 博客积分: 8185
  • 博客等级: 中将
  • 技术积分: 3751
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-15 16:27
个人简介

The views and opinions expressed all for my own,only for study and test, not reflect the views of Any Company and its affiliates.

文章分类

全部博文(358)

文章存档

2012年(8)

2011年(18)

2010年(50)

2009年(218)

2008年(64)

我的朋友

分类:

2009-01-11 19:38:13

Built-In Database Objects
 ・Data dictionary
 ・Performance tables
  ・PL/SQL packages
  ・Database event triggers
●Data dictionary
  Strored in the SYSTEM tablespace
   Owned by the User SYS
   Maintained by the Oracle server
   Read-only (Select)
   Listed in Dictionary
  Contains Two parts :
   ・Base tables  (Created with CREATE DATABASE) sql.bsq
  ・Data dictionary views(Created with the catalog.sql script)
  Containts :
    ・Logical and Physical dababase Structures
  ・Dafinitions and space allocations of objects
    ・Integrity constrants
    ・Users
  ・Roles
  ・Privileges
   ・Auditing
 How to be Used: 
   Modified when DDL is executed
  DD View catalogories:
   ・DBA_
  ・ALL_
  ・User_
        Oracle Ducuments
   SQL>select * from dba_objects;
     SQL>select * from all_objects;
     SQL>select * from users_objects;
●Dynamic Performance Tables(V$,GV$,XV$)
  virtual tables;
  Information is accessed from memory and control file;
  Used to monitor and tune the database
  Owned by SYS
  Listed in v$FIXED_TABLE
 
 
阅读(430) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~