select * from user_sourse where type='procedure';

解决方案 »

  1.   

    select distinct name from  user_source where type = 'PROCEDURE';
      

  2.   

    select owenr, object_name, object_type from all_objects
    where object_type='PROCEDURE';
    这样能查出数据库中所有的存储过程select owenr, object_name, object_type from all_objects
    where object_type='TABLE';
    这样能查出数据库中所有的表
    ......
      

  3.   

    select name,text from all_source where type='PROCEDURE';name----过程名
    text----过程代码
      

  4.   

    select * from  user_source where type = 'PROCEDURE';type一定要大写