Posted on 2009-05-27 23:21
林光炎 閱讀(272)
評論(0) 編輯 收藏 所屬分類:
ORACLE
1,如何得到一個存儲過程的創(chuàng)建腳本
查詢數(shù)據(jù)字典:user_source 和 dba_source
SQL>select text from dba_source where name='p_******' and type='PROCEDURE';
2,如何得到數(shù)據(jù)庫中無效的存儲過程
查詢數(shù)據(jù)字典:dba_objects
SQL> select object_name from dba_objects where object