Oracle數據庫常用的操作命令
摘要: Oracle數據庫常用的操作命令
常用的數據字典表:tab,user_tables,user_objects,user_catalog,user_constraints,user_cons_columns
1、視圖在所有存儲過程(數據字典表)中查詢是否有某一字符串的SQL語句
select * from all_source where type='PROCEDURE' and lower(text) like '%student %'
select * from user_source where lower(text) like '%dbms_%'
select tname,cname,coltype,width from col where tname='STUDENT'
閱讀全文
posted @
2009-12-26 15:54 cheng 閱讀(1405) |
評論 (1) 編輯