描述資訊存在sys使用者下的all_col_comments、all_tab_comments、user_col_comments、user_tab_comments這四張表中
select t.table_name, t.column_name, t.comments from all_col_comments t where t.owner = 'myuser'
select t.table_name, t.comments from all_tab_comments t where t.owner = 'myuser'
select t.table_name, t.column_name, t.comments from all_col_comments t
select t.table_name, t.comments from user_tab_comments t where where t.table_type = 'table' --只檢視table,不檢視view
需注意的是owner欄位裡面的使用者名稱都是大寫的
oracle 檢視表和列描述
檢視備註 檢視表的comment select from all tab comments where table name upper tablename 檢視列的comment select from all col comments where table name upper tablena...
oracle檢視表結構
在 sqlplus中,直接用 desc ribe tablename 即可。可要是在外部應用程式呼叫檢視oracle中的表結構時,這個命令就不能用了。只能用下面的語句代替 看欄位名與資料型別 select from cols where table name upper table name use...
檢視表占用空間資訊
if not exists select from dbo.sysobjects where id object id n dbo tablespaceinfo and objectproperty id,n isusertable 1 create table tablespaceinfo 建立臨...