數(shù)據(jù)字典是Oracle存放有關(guān)數(shù)據(jù)庫信息的地方,其用途是用來描述數(shù)據(jù)的。
創(chuàng)新互聯(lián)建站堅(jiān)信:善待客戶,將會成為終身客戶。我們能堅(jiān)持多年,是因?yàn)槲覀円恢笨芍档眯刨?。我們從不忽悠初訪客戶,我們用心做好本職工作,不忘初心,方得始終。十余年網(wǎng)站建設(shè)經(jīng)驗(yàn)創(chuàng)新互聯(lián)建站是成都老牌網(wǎng)站營銷服務(wù)商,為您提供成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、H5建站、網(wǎng)站制作、成都品牌網(wǎng)站建設(shè)、微信平臺小程序開發(fā)服務(wù),給眾多知名企業(yè)提供過好品質(zhì)的建站服務(wù)。
比如一個(gè)表的創(chuàng)建者信息,創(chuàng)建時(shí)間信息,所屬表空間信息,用戶訪問權(quán)限信息等。
數(shù)據(jù)庫數(shù)據(jù)字典是一組表和視圖結(jié)構(gòu)。它們存放在SYSTEM表空間中
當(dāng)用戶在對數(shù)據(jù)庫中的數(shù)據(jù)進(jìn)行操作時(shí)遇到困難就可以訪問數(shù)據(jù)字典來查看詳細(xì)的信息。
用戶可以用SQL語句訪問數(shù)據(jù)庫數(shù)據(jù)字典。
查看當(dāng)前用戶的缺省表空間
SQLselect username,default_tablespace from user_users;
查看當(dāng)前用戶的角色
SQLselect * from user_role_privs;
查看當(dāng)前用戶的系統(tǒng)權(quán)限和表級權(quán)限
SQLselect * from user_sys_privs;
SQLselect * from user_tab_privs;
查看用戶下所有的表
SQLselect * from user_tables;
顯示用戶信息(所屬表空間)
select default_tablespace,temporary_tablespace
from dba_users where username='GAME';
1、用戶
查看當(dāng)前用戶的缺省表空間
SQLselect username,default_tablespace from user_users;
查看當(dāng)前用戶的角色
SQLselect * from user_role_privs;
查看當(dāng)前用戶的系統(tǒng)權(quán)限和表級權(quán)限
SQLselect * from user_sys_privs;
SQLselect * from user_tab_privs;
顯示當(dāng)前會話所具有的權(quán)限
SQLselect * from session_privs;
顯示指定用戶所具有的系統(tǒng)權(quán)限
SQLselect * from dba_sys_privs where grantee='GAME';
顯示特權(quán)用戶
select * from v$pwfile_users;
顯示用戶信息(所屬表空間)
select default_tablespace,temporary_tablespace
from dba_users where username='GAME';
顯示用戶的PROFILE
select profile from dba_users where username='GAME';
2、表
查看用戶下所有的表
SQLselect * from user_tables;
查看名稱包含log字符的表
SQLselect object_name,object_id from user_objects
where instr(object_name,'LOG')0;
查看某表的創(chuàng)建時(shí)間
SQLselect object_name,created from user_objects where object_name=upper('table_name');
查看某表的大小
SQLselect sum(bytes)/(1024*1024) as "size(M)" from user_segments
where segment_name=upper('table_name');
查看放在ORACLE的內(nèi)存區(qū)里的表
SQLselect table_name,cache from user_tables where instr(cache,'Y')0;
3、索引
查看索引個(gè)數(shù)和類別
SQLselect index_name,index_type,table_name from user_indexes order by table_name;
查看索引被索引的字段
SQLselect * from user_ind_columns where index_name=upper('index_name');
查看索引的大小
SQLselect sum(bytes)/(1024*1024) as "size(M)" from user_segments
where segment_name=upper('index_name');
4、序列號
查看序列號,last_number是當(dāng)前值
SQLselect * from user_sequences;
5、視圖
查看視圖的名稱
SQLselect view_name from user_views;
查看創(chuàng)建視圖的select語句
SQLset view_name,text_length from user_views;
SQLset long 2000; 說明:可以根據(jù)視圖的text_length值設(shè)定set long 的大小
SQLselect text from user_views where view_name=upper('view_name');
6、同義詞
查看同義詞的名稱
SQLselect * from user_synonyms;
7、約束條件
查看某表的約束條件
SQLselect constraint_name, constraint_type,search_condition, r_constraint_name
from user_constraints where table_name = upper('table_name');
SQLselect c.constraint_name,c.constraint_type,cc.column_name
from user_constraints c,user_cons_columns cc
where c.owner = upper('table_owner') and c.table_name = upper('table_name')
and c.owner = cc.owner and c.constraint_name = cc.constraint_name
order by cc.position;
8、存儲函數(shù)和過程
查看函數(shù)和過程的狀態(tài)
SQLselect object_name,status from user_objects where object_type='FUNCTION';
SQLselect object_name,status from user_objects where object_type='PROCEDURE';
查看函數(shù)和過程的源代碼
SQLselect text from all_source where owner=user and name=upper('plsql_name');
select * from 數(shù)據(jù)字典表名
如果你想知道這些表都是做什么的就得查閱相關(guān)的資料了.也可以表sqldeveloper類的圖型工具一張一張的分析各個(gè)表