日期:2014-05-17  浏览次数:20734 次

查询一个用户中所有的存储过程
我在用户 "aa "下创建好多存储过程,想查询出所有的存储过程名称,该怎么做?我用“select   object_name,   object_type   from   dba_objects   where   object_type= 'table '   and   owner= 'aa '”显示都是 "未选定行 "!

------解决方案--------------------
这个就行:
SELECT * FROM User_Procedures;