首页 > 开发 > 综合 > 正文

Error accessing PRODUCT_USER_PROFILE

2024-07-21 02:53:17
字体:
来源:转载
供稿:网友


Oracle 10g ,创建完用户之后报warning

SQL> conn OPMDATA / paic1234;Error accessing PRODUCT_USER_PROFILEWarning:  Product user profile information not loaded!You may need to run PUPBLD.SQL as SYSTEMConnected.

使用system用户登陆执行$ORACLE_HOME/sqlplus/admin/pupbld.sql脚本即可

 > sqlplus system/paic1234

SQL*Plus: Release 10.2.0.5.0 - Production on Mon Mar 6 16:45:22 2017

Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.

Connected to:Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit ProductionWith the Partitioning, Oracle Label Security, Data Mining and Real application Testing options

SQL> @$ORACLE_HOME/sqlplus/admin/pupbld.sql DROP SYNONYM PRODUCT_USER_PROFILE             *ERROR at line 1:ORA-01434: private synonym to be dropped does not exist

  DATE_VALUE FROM PRODUCT_USER_PROFILE                  *ERROR at line 3:ORA-00980: synonym translation is no longer valid

DROP TABLE PRODUCT_USER_PROFILE           *ERROR at line 1:ORA-00942: table or view does not exist

ALTER TABLE SQLPLUS_PRODUCT_PROFILE ADD (LONG_VALUE LONG)*ERROR at line 1:ORA-00942: table or view does not exist

Table created.

DROP TABLE PRODUCT_PROFILE           *ERROR at line 1:ORA-00942: table or view does not exist

DROP VIEW PRODUCT_PRIVS*ERROR at line 1:ORA-00942: table or view does not exist

View created.

Grant succeeded.

Synonym dropped.

Synonym created.

DROP SYNONYM PRODUCT_USER_PROFILE             *ERROR at line 1:ORA-01434: private synonym to be dropped does not exist

Synonym created.

Synonym dropped.

Synonym created.

再次连接,不报错了SQL> conn OPMDATA / paic1234;Connected.


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表