标签:orm name ons 字典 开启 ref objects 使用率 sel
数据字典Data Dictionary管理业务数据 、表、视图、索引
数据字典:
1、基表 base tables 2、用户视图 user accessible views
类型分类:(视图前缀 view prefix)
1、USER 2、ALL 3、DBA 4、V$ 动态视图
含有字段 table_name, comments 注释
column 列名 format a30 ; 修改显示的格式
select * from dictionary
where table_name like ‘%COL%‘ and table_name like ‘%TAB%‘;
select * from dictionary where table_name like ‘%MEM%‘;
select object_name,object_type,status,created
from user_objects
order by object_type;
案例:对象ID 达到10亿出现过崩溃的情况;
select table_name,tablespace_name from user_tables;
‘%PART%‘ 分区
PCT_FREE :块的剩余
PCT_USED:块的使用率
DEGREE :并行是否开启
select table_name,column_name
from user_table_columns
where column_name=‘DEPARTMENT_ID‘;
查DEPARTMENT_ID在哪些表里有
comment 对表加注释
表加注释: comment on table emp is ‘emp information‘;
列加注释:comment on column emp.employee_id is ‘ emp........‘;
注释: 4个表里查
ALL_COL_COMMENTS
USER_COL_COMMENTS
ALL_TAB_COMMNENTS
USER_TAB_COMMENTS
标签:orm name ons 字典 开启 ref objects 使用率 sel
原文地址:http://blog.51cto.com/3938853/2156794