查看當(dāng)前用戶的缺省表空間
創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供鳳山網(wǎng)站建設(shè)、鳳山做網(wǎng)站、鳳山網(wǎng)站設(shè)計(jì)、鳳山網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、鳳山企業(yè)網(wǎng)站模板建站服務(wù),10余年鳳山做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
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)建時間
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、索引
查看索引個數(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');
--查詢所有表,owner為用戶,dba_objects只能由具有dba角色的用戶去查詢,比如system用戶。
select * from dba_objects where owner='SYS' and object_type='TABLE';
--查詢所有視圖
select * from dba_objects where object_type='VIEW';
--查看object_type所有對象類型,你可以看看,需要什么就查什么
select distinct object_type from dba_objects order by object_type asc;
視圖是沒有結(jié)構(gòu)查詢語句的。因?yàn)樵噲D就是一個別名,如果真的想查,那么可以通過
select * from user_tab_columns where TABLE_NAME='視圖名';查詢,這里不僅有表的信息,也有視圖的相關(guān)信息。
pl/sql
developer
選中這個物化視圖,然后點(diǎn)擊查看,就能看到創(chuàng)建這個物化視圖的語句了
pl/sql
windows
中輸入這個物化視圖名稱有,鼠標(biāo)右鍵同樣可以查看這個物化視圖的創(chuàng)建語句
dbms_metadata.get_ddl
這個函數(shù)也可以