After AD.C.Delta.6 and TXK.6,
when running
$adop phase=fs_clone,
we hit with an issue:
Validating system setup...
Node registry is valid.
Checking for pending adop sessions...
No pending session exists.
Staging new adop session...
[ERROR] Failed to execute SQL statement :
begin
ad_zd_adop.INSERT_ADD_NODE_RECORDS;
end;
[ERROR] Error Message :
[ERROR] ORA-20010: ORA-01403: no data found
[ERROR] ORA-06512: at "APPS.AD_ZD_ADOP", line 2790
[ERROR] ORA-06512: at line 2 (DBD ERROR: OCIStmtExecute)
[UNEXPECTED]Error occurred while adding new node information
[UNEXPECTED]Unrecoverable error occured. Exiting the current session.
[STATEMENT] Please run adopscanlog utility, using the command
"adopscanlog -latest=yes"
to get the list of the log files along with snippet of the error message corresponding to each log file.
adop exiting with status = 2 (Fail)
When we open the AD_ZD_ADOP package body and changed the lines
From this
cursor new_nodes is
select node_name
from adop_valid_nodes
where node_name not in (select node_name from ad_adop_sessions
where adop_session_id = (select max(adop_session_id) from
ad_adop_sessions));
cursor available_nodes is
select node_name from ad_adop_sessions
where adop_session_id = (select max(adop_session_id) from
ad_adop_sessions)
and node_name in (select node_name from
adop_valid_nodes)
order by node_name;
to
cursor new_nodes is
select UPPER(node_name) node_name
from adop_valid_nodes
where node_name not in (select node_name from ad_adop_sessions
where adop_session_id = (select max(adop_session_id) from
ad_adop_sessions));
cursor available_nodes is
select node_name from ad_adop_sessions
where adop_session_id = (select max(adop_session_id) from
ad_adop_sessions)
and node_name in (select UPPER(node_name) from
adop_valid_nodes)
order by node_name;
and compile the package and package body.
We were able to complete the fs_clone successfully.
Generating log report...
Output: /u01/install/APPS/fs_ne/EBSapps/log/adop/26/fs_clone_20150909_040049/PRD12241_LO64BLWPA1/adzdshowlog.out
adop phase=fs_clone - Completed Successfully
Issue identified,
May be because of our hostname all in caps.
Share the content if you found it is useful (You can share using 300 community websites) click "share" at the end of the post.
You are encouraged to leave a comment.
You are encouraged to leave a comment.
Showing posts with label adop. Show all posts
Showing posts with label adop. Show all posts
Wednesday, September 09, 2015
Tuesday, September 01, 2015
ORA-31024: Parser initialization failed with LPX-201 error while parsing a stream to XOB
While running
adop phase=prepare,
select node_name from FND_OAM_CONTEXT_FILES
2 where NAME not in ('TEMPLATE','METADATA','config.txt') and
3 CTX_TYPE='A' and (status is null or upper(status) in ('S','F'))
4 and EXTRACTVALUE(XMLType(TEXT),'//file_edition_type') = 'run'
5 and EXTRACTVALUE(XMLType(TEXT),'//oa_service_group_status[@oa_var=''s_web_admin_status'']')='enabled'
6 and EXTRACTVALUE(XMLType(TEXT),'//oa_service_list/oa_service[@type=''admin_server'']/oa_service_status')='enabled'
7 ;
ERROR at line 4:
ORA-31024: Parser initialization failed with LPX-201 error
while parsing a stream to XOB
ORA-06512: at "SYS.XMLTYPE", line 272
ORA-06512: at line 1
While applying the patches for latest AD and TXK patches,
we were told to run
perl $ORACLE_HOME/nls/data/old/cr9idata.pl
Verify $ORA_NLS10 variable
Once, it is completed, we should source the database environment and start the database.
Once it is done, the error is gone.
Subscribe to:
Posts (Atom)
Let us be Friends...
Popular Posts
-
This blog describes the process of re-creating an existing Applications Release 12 database instance using the export and import utilities....
-
Secure Sockets Layer (SSL) SSL is a technology that defines the essential functions of mutual authentication, data encryption, and data inte...
-
1. Installation of the Demantra Base Application or Patches Create a C:/Tmp folder on the machine where the setup.exe will be executed pri...
-
Primary Node: Host name: genius.chainsys.com IP : 192.168.2.236 File locations: apps - /oracle/D1/apps (SHARED) db - /oracle/PROD/db inst - ...
-
In this Blog, I am going to explain you the way you can get the Translation Synchronization Patch for the Language you license thro OAM. T...
-
To implement the solution, please execute the following steps: 1. Go into the responsibility: System Administrator 2. Submit the concurrent ...
-
Memory Tuning The total available memory on a system should be configured in such a manner, that all components of the system functio...
-
Symptom: A MultiException has 6 exceptions. They are: 1. java.lang.AssertionError: Cannot export non clusterable object with jndiName:weblo...
-
Hi, everybody should come across, while during a clone, you might have experienced very poor performance while running txkWfClone.sh profil...
-
In Oracle Application 11i and R12, we have an FND functionality for changing the passwords for either application user, or product schema pa...