RT

解决方案 »

  1.   

    select * from user_procedures
      

  2.   

    select * from  user_source t where t.type='PROCEDURE' order by name,line
      

  3.   

    select distinct t.name from user_source t where t.type='FUNCTION';
    select * from user_source t where t.type='FUNCTION' order by name,line;
      

  4.   

    select * from user_procedures
    where object_type='PROCEDURE'
      

  5.   

    select * from user_source
    where type='PROCEDURE'
      

  6.   


    set long 10000select dbms_metadata.get_ddl('PROCEDURE','过程名','过程所属用户') from dual'过程名','过程所属用户' 要大写