Oracle初學者問題5(轉)

Rounders發表於2007-08-06
Oracle初學者問題5(轉)[@more@]41. 如何給表、列加註釋?
  
  SQL>comment on table 表 is '表註釋';
  
  註釋已建立。
  
  SQL>comment on column 表.列 is '列註釋';
  
  註釋已建立。
  
  SQL> select * from user_tab_comments where comments is not null;
  
  42. 如何檢視各個表空間佔用磁碟情況?
  
  SQL> col tablespace format a20
  
  SQL> select
  
  .file_id 檔案ID號,
  
  .tablespace_name 表空間名,
  
  .bytes 位元組數,
  
  (b.bytes-sum(nvl(a.bytes,0))) 已使用,
  
  um(nvl(a.bytes,0)) 剩餘空間,
  
  um(nvl(a.bytes,0))/(b.bytes)*100 剩餘百分比
  
  from dba_free_space a,dba_data_files b
  
  where a.file_id=b.file_id
  
  group by b.tablespace

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9417382/viewspace-932306/,如需轉載,請註明出處,否則將追究法律責任。

相關文章