正常情況下,oracle ebs裡修改使用者密碼,可以在system administrator> define user form裡更改,但有的時候,開發或者實施需要更快速的更改密碼,可以使用下邊的這個指令碼
[sql]view plain
copy
print?
declare
l_success boolean;
begin
l_success := fnd_user_pkg.changepassword('operations','welcome123');
if l_success
then
dbms_output.put_line('password changed');
else
dbms_output.put_line('something wrong');
end if;
end;
declare
l_success boolean;
begin
l_success := fnd_user_pkg.changepassword('operations','welcome123');
if l_success
then
dbms_output.put_line('password changed');
else
dbms_output.put_line('something wrong');
end if;
end;
如何用指令碼離線備份Domino系統
目的 將 domino 伺服器需要的備份資料檔案壓縮並備份下來 要求 作業系統 必須是 windows 系統 服務要求 安裝之後,domino service 必須在作業系統的 服務 中 壓縮軟體要求 winrar 3.20 版 邏輯說明 1.先停止 domino server 2.利用 winra...
在VC裡如何用Makefile檔案編譯?
原文 執行cmd.exe or command.com in win9x 進到vc bin目錄 執行vc vars32.bat 進到makefile 所在的目錄 nmake f makefile 以下內容為程式 libjpeg.lib libobjects rm libjpeg.lib lib ou...
bat裡如何用相對路徑
首先,在bat檔案裡,分割目錄層次用反斜槓 而不是斜槓 其次,獲取當前路徑 set curdir cd 第三,或取當前碟符 set curdrv cd 0,2 第四,進入當前碟符 curdrv 第五,把相對與當前路徑的上級子路徑中檔名輸出到乙個txt檔案 可以從第二步至此 dir air4x nc ...