oracle自定义函数 博客分类: oracle oracle高级编程
程序员文章站
2024-03-24 19:46:10
...
oracle 函数的创建和调用
函数和存储过程的区别> 只有函数 可以直接 在select中使用, 这就是区别。
FUNCTION不建议用OUT参数,只用RETURN来返回。用OUT会令人迷惑,而且无法在SQL中调用。
在SQL中调用带out 参数的oracle ORA06572 错误
错误原因
ORA-06572: Function string has out arguments
Cause: A SQL statement references either a packaged, or a stand-alone, PL/SQL function that contains an OUT parameter in its argument list. PL/SQL functions referenced by SQL statements must not contain the OUT parameter.
Action: Recreate the PL/SQL function without the OUT parameter in the argument list.
删 函数
drop function 函数名;
推荐阅读
-
oracle自定义函数 博客分类: oracle oracle高级编程
-
ORACLE 问题累积 博客分类: ORACLE 问题
-
Oracle 10g 升级错误解决 博客分类: 数据库技术笔记 Oracle升级问题
-
oracle常见问题搜集 博客分类: __1.★oracle 数据库oracle问题
-
python selenium抓取页面截图+连接oracle数据库 博客分类: python
-
ORACLE数据泵 expdp/impdp使用详解(转) 博客分类: 数据库数据库 oracle 开发
-
Oracle常用语句大全 博客分类: oracle oracle
-
python selenium抓取页面截图+连接oracle数据库 博客分类: python
-
oracle cursor (游标) 博客分类: oracle oracleplsqlcursorref
-
oracle存储过程编译卡死(资源dll锁) 博客分类: 数据库数据库 oracle 开发 数据库资源锁锁定死锁oracle卡死