oracle 11g r2 - deploying dbmsclr.plb as sysdba after ODAC installation

对着背影说爱祢 提交于 2019-12-12 00:16:07

问题


I just finished installing ODTwithODAC112012 on my system. Now I am trying to deploy dbmsclr.plb

But I am getting the error SP2-024 nothing to change.

Here is the command window:-

C:\>sqlplus /nolog  

SQL*Plus: Release 11.2.0.1.0 Production on Tue Aug 14 22:59:39 2012  

Copyright (c) 1982, 2010, Oracle.  All rights reserved.  

SQL> connect sys/Bel29072012 as SYSDBA  
Connected.  
SQL> C:\app\thoshiba\product\11.2.0\dbhome_1\RDBMS\ADMIN\dbmsclr.plb  
SP2-0024: Nothing to change.  
SQL> select count(*) from all_objects where object_name='DBMS_CLR';  

  COUNT(*)
----------
         0

SQL> select count(*) from all_objects where object_name='DBMS_CLR' AND owner='SYS';  

  COUNT(*)
----------
         0

SQL>

Please let me know how to overcome this issue.


回答1:


To gedrid of "SP2-024 nothing to change" error Need to add @ before running the script like

SQL> @C:\app\thoshiba\product\11.2.0\dbhome_1\RDBMS\ADMIN\dbmsclr.plb 


来源:https://stackoverflow.com/questions/11959294/oracle-11g-r2-deploying-dbmsclr-plb-as-sysdba-after-odac-installation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!