Error accessing PRODUCT_USER_PROFILE問題處理,productprofile

來源:互聯網
上載者:User

Error accessing PRODUCT_USER_PROFILE問題處理,productprofile

--今天在處理修改密碼的時候出現了,如下的問題,經過搜尋相關問題,已解決
--原因通常是由於手動建庫導致沒有執行過@$ORACLE_HOME/sqlplus/admin/pupbld.sql這個指令碼導致。
--解決方案報錯中也給出了,You may need to run PUPBLD.SQL as SYSTEM
--使用system使用者登陸,執行指令碼即可

Error accessing PRODUCT_USER_PROFILE
Warning:  Product user profile information not loaded!
You may need to run PUPBLD.SQL as SYSTEM

--首先登陸資料庫,修改使用者的密碼,然後進行測試connect,報錯
[oracle@ilogdbtest ~]$ sqlplus / as sysdba

SQL> alter user qcarilog identified by xxxxxx;

User altered.

SQL> connect qcarilog/xxxxxxx
Error accessing PRODUCT_USER_PROFILE
Warning:  Product user profile information not loaded!
You may need to run PUPBLD.SQL as SYSTEM
Connected.
SQL> exit

--用system使用者登陸,執行指令碼
SQL> conn system/system
Connected.
SQL> @$ORACLE_HOME/sqlplus/admin/pupbld.sql

--再次嘗試用該使用者登陸,無報錯,問題解決
[oracle@ilogdbtest ~]$ sqlplus / as sysdba

SQL> connect qcarilog/xxxxxx
Connected.

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.