您的位置:首页 > 移动开发 > Objective-C

ORA-39082: Object type string created with compilation warnings

2012-09-29 17:55 585 查看

ORA-39082: Object type string created with compilation warnings


March 5th, 2011

rishi


0

[align=center]ORA-39082:[/align]
Object type string created with compilation warnings
Cause:
The object in the SQL statement following this error was created with compilation errors. If this error occurred for a view, it is possible that the base table of the view was missing.
Action:
This is a warning. The object may have to be recompiled before being used.
During import following error comes
ORA-39082: Object type ALTER_FUNCTION:FUNCTION_NAME created with compilation warnings

Workaround:
Recompile the invalid objects:

ALTER FUNCTION FUNCTION_NAME COMPILE;

or

exec dbms_utility.compile_schema(‘SCHEMA_NAME’);

or

Execute the Oracle-supplied utility to compile invalid objects globally:
Login as sys with SQLPLUS:

Sqlplus “/as sysdba”

SQL> @ORACLE_HOME/rdbms/admin/utlrp
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐