EBS R12的Concurrent Request ID和資料庫Session ID的關聯
ORACLE EBS的Request ID和後臺資料庫Session透過apps.fnd_concurrent_requests.oracle_process_id欄位和
v$process.spid欄位關聯。
下面的SQL可以根據Request ID找到對應的Session資訊:
select * from v$session
where paddr in
(select addr from v$process where spid =
(select b.oracle_process_id from apps.fnd_concurrent_requests b
where b.request_id = &req_number)
) ;
或者進一步找到正在執行的SQL:
select * from v$sql where sql_id = (上面v$sessoin中查詢出的sql_id);
或
select sql_text from v$sqltext_with_newlines
where hash_value in
(select SQL_HASH_VALUE from v$session where paddr in
(select addr from v$process where spid =
(select b.oracle_process_id from apps.fnd_concurrent_requests b
where b.request_id = &req_number
)
)
) order by piece;
原文件地址 : http://blog.itpub.net/207/viewspace-1023112/
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14710393/viewspace-1181557/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORACLE EBS的Request ID和後臺資料庫Session ID關聯Oracle資料庫Session
- 關於FND_REQUEST.SUBMIT_REQUEST和 FND_CONCURRENT.WAIT_FOR_REQUESTMITAI
- EBS R12 資料庫初始引數參考資料庫
- Oracle EBS R12 客化的相關資料,需要的可以參考Oracle
- EBS R12系統的正常關閉和啟動
- keycloak~關於session idle和session max的解釋Session
- FND_REQUEST.SUBMIT_REQUEST和 FND_CONCURRENT.WAIT_FOR_REQUESTMITAI
- 關於修改資料庫名稱和ID的方法總結資料庫
- EBS R12.1中如何提交一個請求(Concurrent Request)
- EBS R12中更改埠 Web Listener Port (文件 ID 760590.1)Web
- Android開源資料庫 GreenDao 物件實體間關聯關係Android資料庫物件
- EBS R12 Concurrent Reqest執行報錯ORA-20100
- 由JSESSIONID談cookie與SESSION的區別和聯絡JSSessionCookie
- Oracle NID工具修改資料庫DBID和資料庫名稱Oracle資料庫
- 大部分關聯式資料庫並不真的支援ACID資料庫
- Android資料庫高手祕籍(4):使用LitePal建立表關聯Android資料庫
- RAID 和Oracle資料庫AIOracle資料庫
- EBS R11i,R12 匯入匯出資料庫遷移(10g,11g) 以及 R11i, R12 資料庫相關文件資料庫
- android libs資料夾中的jar包關聯docAndroidJAR
- EBS(ERP)根據請求號(request ID)查詢正在執行的sqlSQL
- 關閉Concurrent Mananger或Server Crash後還是執行狀態的Concurrent Request如何處理NaNServer
- 關聯式資料庫的封建迷信資料庫
- EBS R12克隆 - Oracle11.2.0.3 EBS資料庫克隆(RMAN恢復) 3Oracle資料庫
- EBS R12克隆 - Oracle11.2.0.3 EBS資料庫克隆(RMAN恢復) 2Oracle資料庫
- EBS R12克隆 - Oracle11.2.0.3 EBS資料庫克隆(RMAN恢復) 1Oracle資料庫
- 異構資料庫的關聯查詢 oracle hsodbc 關聯mysql資料庫OracleMySql
- [資料庫] 淺談mysql的serverId/serverUuid資料庫MySqlServerUI
- 【資料庫理論】 ACID和BASE的比較資料庫
- 和某個session關聯的程式和使用者資訊Session
- 好用的 Android 資料庫 DBFlowAndroid資料庫
- 更改Oracle資料庫的SIDOracle資料庫
- Oracle EBS R12 "OutOfMemoryError"OracleError
- 資料庫關聯問題資料庫
- 快速刪除有外來鍵關聯的資料庫的資料資料庫
- 資料庫和開發行業中的IDE工具資料庫行業IDE
- (二)oralce資料庫中sys_guid()和newid()資料庫GUI
- android 檢視資料庫和shaedpreference資料框架Android資料庫框架
- 利用ODBC實現Domino和關聯式資料庫的互操作 (轉)資料庫