Oracle資料字典

2021-10-08 12:20:38 字數 694 閱讀 3745

這些指令碼檔案儲存在$oracle_home\rdbms\admin目錄下。

--以system使用者登入,檢視所有資料字典檢視。

select * from dictionary;

--檢視當前使用者擁有哪些表。

select table_name from user_tables;

--檢視當前使用者有哪些表可用。

select table_name, owner from all_tables;

--檢視整個資料庫中有哪些表。

select table_name, owner from dba_tables;

--檢視當前使用者所擁有物件名稱和型別。

select * from user_catalog;

--檢視所有動態效能表的名稱和型別等資訊。

Oracle 資料字典

資料字典包括以下內容 1.所有資料庫schema物件的定義 表,檢視,索引,聚簇,同義詞,序列,過程,函式,包,觸發器 2.資料庫的空間分配和使用情況 3.欄位的預設值 4.完整性約束資訊 5.oracle使用者名稱,角色,許可權等資訊 6.審計資訊 7.其他資料庫資訊 資料字典有4部分組成 內部r...

oracle 資料字典

oracle資料字典 select from user tab columns 檢視使用者列物件 select from user tab comments 檢視使用者表的備註 select from user tab statistics select from all users 所有使用者 s...

Oracle 資料字典

資料字典包括以下內容 1.所有資料庫schema物件的定義 表,檢視,索引,聚簇,同義詞,序列,過程,函式,包,觸發器 2.資料庫的空間分配和使用情況 3.欄位的預設值 4.完整性約束資訊 5.oracle使用者名稱,角色,許可權等資訊 6.審計資訊 7.其他資料庫資訊 資料字典有4部分組成 內部r...