首页 > 数据库技术 > 详细

oracle表,视图,存储过程,函数,序列.....查询

时间:2017-04-16 19:16:24      阅读:260      评论:0      收藏:0      [点我收藏+]

查询存储过程,函数,序列,表,视图的名字

select object_name from user_objects where object_type = ‘PROCEDURE‘

select object_name from user_objects where object_type = ‘FUNCTION‘

select object_name from user_objects where object_type = ‘SEQUENCE‘

select object_name from user_objects where object_type = ‘INDEX‘

select object_name from user_objects where object_type = ‘TABLE‘

select object_name from user_objects where object_type = ‘VIEW‘

或:

select * from user_tables;

select view_name from user_views;

select view_name from user_views;

select sequence_name from user_sequences;

 

oracle表,视图,存储过程,函数,序列.....查询

原文:http://www.cnblogs.com/26JRS/p/6719424.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!