当前位置:Gxlcms > 数据库问题 > oracle表,视图,存储过程,函数,序列.....查询

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

时间:2021-07-01 10:21:17 帮助过:16人阅读

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

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表,视图,存储过程,函数,序列.....查询

标签:where   oracle   procedure   bsp   函数   序列   存储过程   object   table   

人气教程排行