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 阅读(1391) |
评论 (1) 编辑