Oracle初学者必知的100个问题(上)(2)
文章作者 100test 发表时间 2007:03:14 13:58:33
来源 100Test.Com百考试题网
11. 怎样得到触发器、过程、函数的创建脚本?
desc user_source
user_triggers
12. 怎样计算一个表占用的空间的大小?
0select owner,table_name,
NUM_ROWS,
BLOCKS*AAA/1024/1024 "Size M",
EMPTY_BLOCKS,
LAST_ANALYZED
from dba_tables
where table_name= XXX .
Here: AAA is the value of db_block_size .
XXX is the table name you want to check
13. 如何查看最大会话数?
SELECT * FROM V$PARAMETER WHERE NAME LIKE proc% .
SQL>
SQL> show parameter processes
NAME TYPE VALUE
----