重灌DB後,會出現奇怪的Error
PLS-00201: identifier 'DBMS_SHARED_POOL' must be declared
奇怪的是,明明這個在SYS裡頭就有定義,不過前面卻沒有加"SYS.",查Synonyms也沒發現有加,後來才用
desc DBMS_SHARED_POOL;
才發現原本的DB是加在PUBLIC這個帳號底下,所以到PUBLIC底下執行下面這個sql就好了
create or replace public synonym DBMS_SHARED_POOL
for SYS.DBMS_SHARED_POOL;
2012年6月4日 星期一
2012年6月1日 星期五
SAP Job 無法 Stop 時的做法
今天有user請我幫他把job cancel掉,不過進sm37後,怎麼stop也不理我,我記得sm50可以查process,但是從job detail裡頭的pid無法對到sm50的pid,最後才從Google裡頭查到,要用sm51才能查到被hold住的process,從這裡就可以把這個process砍掉,job 也 stop了
2012年5月30日 星期三
Oracle Database Create dbcontrol error 處理方式
Oracle Database 10g 上了新的patch 10.2.0.5會遇到一個問題
emca -config dbcontrol db -repos create
會出現一個錯誤訊息
SEVERE: Password file may be missing or configured incorrectly.
照理來講不可能,我才剛重灌怎麼可能把Password file搞掛,所以重新安裝後先不上patch就沒事,這樣來講就好玩了,只好請Google大神出馬
解法參考
原因出現在底下這個
sql> show parameter pass
NAME TYPE VALUE
------------------------------------ ---------------------- ------------------------------
remote_login_passwordfile string SHARED
這個不能是SHARED,所以用下面的指令解掉
alter system set remote_login_passwordfile=exclusive scope=spfile;
重開Instance之後,就可以正常跑emca了
emca -config dbcontrol db -repos create
會出現一個錯誤訊息
SEVERE: Password file may be missing or configured incorrectly.
照理來講不可能,我才剛重灌怎麼可能把Password file搞掛,所以重新安裝後先不上patch就沒事,這樣來講就好玩了,只好請Google大神出馬
解法參考
原因出現在底下這個
sql> show parameter pass
NAME TYPE VALUE
------------------------------------ ---------------------- ------------------------------
remote_login_passwordfile string SHARED
這個不能是SHARED,所以用下面的指令解掉
alter system set remote_login_passwordfile=exclusive scope=spfile;
重開Instance之後,就可以正常跑emca了
2012年5月29日 星期二
解決Java無法變更自動更新設定
由於工作內容的關係,希望Java不要做Update,不過控制台裡頭的Java不管怎麼設定都沒辦法儲存,我有想過應該是沒有管理者權限的問題,但在控制台裡頭的Java點右鍵也不會跳出"以系統管理者身份執行",翻了Google有找到答案
解法
解法
Actually this problem is due to the control panel requiring Admin Privileges to allow the java control panel to save your settings (hasn't been fixed for ages, thanks to sun micro).
Basically find the java control panel javacpl.exe here:
C:\Program Files\Java\jre6\bin\javacpl.exe
...right click > run with admin privileges.
Uncheck java update, save and then reopen it to check that the setting is sticking.
訂閱:
文章 (Atom)