首页 > 数据库 > Oracle > 正文

重新编译PLSQL中的无效对象或者指定的对象 的方法

2020-07-26 14:36:37
字体:
来源:转载
供稿:网友
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;   
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表