oracle入门笔记

  公司使用的oracle,为了业务,我也得去适应一下。

①登录用户后,执行下面语句du查看当前用户有哪些存储过程或者函数:

select  name from user_source where  type='PROCEDURE' | 'FUNCTION';

或者:select object_name from user_procedures;

或者:select object_name from user_objects where object_type='PROCEDURE' ;

②找到你所要查询的存储过程名字后,执行下面操作,可以看到存错过程内容:

select  text from user_source where name ='xxxx';--(xxxx代表所要查询的存储过程名字)

  

oracle报错,不是单组分组函数解决方法 :https://blog.csdn.net/JYH1314/article/details/53302737

原文地址:https://www.cnblogs.com/Robin008/p/14005881.html