您的位置:首页 > 编程语言 > PHP开发

ebs view old conc logfile and outputfile

2016-06-22 12:17 633 查看

Cannot View Old Concurrent Requests After Clone (Doc ID 395284.1)

Solution

Oracle Application Object Library - Version 11.5.10.0 to 12.2 [Release 11.5 to 12.2]
NOTE: Updating tables from sqlplus is not supported.

The table FND_CONCURRENT_RQUESTS needs to get updated with the new Node Name.

First take backup of the table, then update the old records with the new Node Name.
1. Backup process:

      Create table FND_CONCURRENT_REQUESTS_BKP as select * from FND_CONCURRENT_REQUESTS;

2. Update Process:

       Update FND_CONCURRENT_REQUESTS set LOGFILE_NODE_NAME='ORATST', OUTFILE_NODE_NAME='ORATST'

Where (UPPER(LOGFILE_NODE_NAME) LIKE 'ORACLESRV') and (UPPER(OUTFILE_NODE_NAME) LIKE 'ORACLESRV');

                          

Where ORATST should be replaced by the cloned instance node name (Target)

 and ORACLESRV should be replace by the source instance node name (Source).

Solution

The content applies to all Release 12.x.x versions

Cloning Oracle Applications Release 12 with Rapid Clone (Doc ID 406982.1)

FND_CONCURRENT_REQUESTSLOGFILE_NAMEUpdate with the correct path to the logfile directory.
FND_CONCURRENT_REQUESTSOUTFILE_NAMEUpdate with the new directory path on the target system.


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: