Issue:
java.sql.SQLException: ORA-01422: exact fetch returns more than requested number of rows
ORA-06512: at "APPS.FND_APP_SERVER_PKG", line 106
ORA-06512: at line 1 - Database error modifying the server
2. Clean the table FND_NODES :
3. Execute Autoconfig on the DB Tier, then on the Application Tier to populate tables with correct data.
java.sql.SQLException: ORA-01422: exact fetch returns more than requested number of rows
ORA-06512: at "APPS.FND_APP_SERVER_PKG", line 106
ORA-06512: at line 1 - Database error modifying the server
AutoConfig could not successfully execute the following scripts:
Directory: <$COMMON_TOP>/admin/install/<SID>_<HOSTNAME>
adgendbc.sh INSTE8_SETUP 1
AutoConfig is exiting with status 1
Directory: <$COMMON_TOP>/admin/install/<SID>_<HOSTNAME>
adgendbc.sh INSTE8_SETUP 1
AutoConfig is exiting with status 1
Solution :
1. Open a new Shell on the APPS-Tier and source the APPL-User-Environment
1. Open a new Shell on the APPS-Tier and source the APPL-User-Environment
2. Clean the table FND_NODES :
$ sqlplus apps/<password>
SQL> EXEC FND_CONC_CLONE.SETUP_CLEAN;
COMMIT;
EXIT;
EXIT;
3. Execute Autoconfig on the DB Tier, then on the Application Tier to populate tables with correct data.
Comments
Post a Comment