查看某表的索引信息:
select * from user_ind_columns where index_name=upper('&index_name') 
查看某表的约束条件:
SQL>select constraint_name, constraint_type,search_condition, r_constraint_name 
from user_constraints where table_name = upper('&table_name'); 
SQL>select c.constraint_name,c.constraint_type,cc.column_name 
from user_constraints c,user_cons_columns cc 
where c.owner = upper('&table_owner') and c.table_name = upper('&table_name') 
and c.owner = cc.owner and c.constraint_name = cc.constraint_name 
order by cc.position;
查看视图的名称:
SQL>select view_name from user_views;
 
	posted on 2009-12-10 11:30 
枫中玎玲 阅读(527) 
评论(0)  编辑  收藏  所属分类: 
数据库DB