查询一个用户中所有的存储过程我在用户 "aa "下创建好多存储过程,想查询出所有的存储过程名称,该怎么做?我用“select object_name, object_type from dba_objects where object_type= 'table ' and owner= 'aa '”显示都是 "未选定行 "![解决办法]这个就行: SELECT * FROM User_Procedures;