Oracle初学者必知的100个问题(上)(5)
文章作者 100test 发表时间 2007:03:14 13:58:21
来源 100Test.Com百考试题网
41. 如何给表、列加注释?
SQL>comment on table 表 is 表注释 .
注释已创建。
SQL>comment on column 表.列 is 列注释 .
注释已创建。
SQL> 0select * from user_tab_comments where comments is not null.
42. 如何查看各个表空间占用磁盘情况?
SQL> col tablespace format a20
SQL> 0select
b.file_id 文件ID号,
b.tablespace_name 表空间名,
b.bytes 字节数,
(b.bytes-sum(nvl(a.bytes,0))) 已使用,
sum(nvl(a.bytes,0)) 剩余空间,
sum(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_name,b.file_id,b.bytes
order by b.file_id
43. 如把ORACLE设置为MTS或专用模式?
#dispatchers="(PROTOCOL=TCP) (SERVICE=SIDXDB)"
加上就是MTS,注释就是专用模式,SID是指你的实例名。