重新编译PLSQL中的无效对象或者指定的对象 的方法
程序员文章站
2023-12-01 18:12:52
oracle tips, tricks & &n...
oracle tips, tricks & scripts
1. topic: compiling invalid objects:
oracle8i and oracle9i provides a script called utlrp.sql located in $oracle_home/rdbms/admin which can be used anytime to recompile all exisiting pl/sql modules (procedure, functions,packages,triggers, types, and views) in a database.
编译无效的对象:
$oracle_home/rdbms/admin/utlrp.sql
或者
编译指定的对象:
过程:
alter procedure procedure_name compile;
函数:
alter function function_name compile;
包:
alter package package_name compile;
包体:
alter package package_name compile body;
1. topic: compiling invalid objects:
oracle8i and oracle9i provides a script called utlrp.sql located in $oracle_home/rdbms/admin which can be used anytime to recompile all exisiting pl/sql modules (procedure, functions,packages,triggers, types, and views) in a database.
编译无效的对象:
$oracle_home/rdbms/admin/utlrp.sql
或者
编译指定的对象:
过程:
alter procedure procedure_name compile;
函数:
alter function function_name compile;
包:
alter package package_name compile;
包体:
alter package package_name compile body;
推荐阅读
-
重新编译PLSQL中的无效对象或者指定的对象 的方法
-
C#检查指定对象是否存在于ArrayList集合中的方法
-
重新编译PLSQL中的无效对象或者指定的对象 的方法
-
android中intent传递list或者对象的方法
-
JS高级---拷贝继承:把一个对象中的属性或者方法直接复制到另一个对象中
-
C#检查指定对象是否存在于ArrayList集合中的方法
-
Spring 注解中,普通类获取@Service标记的方法 或者bean对象的两种方法
-
【转载】C#中List集合使用Remove方法移除指定的对象
-
重新编译PLSQL中的无效对象或者指定的对象 的方法
-
重新编译PLSQL中的无效对象或者指定的对象 的方法