1. Did you verify the correct Oracle SID used in the SQL Developer connection settings?
2. Have you tried to connect to the DB from CMD(SQL*Plus) ? and still getting the issue?
- Set the oracle_sid and verify the access via ifsapp
> Set oracle_sid=<Database_SID>
> sqlplus/nolog
Sql > conn ifsapp/<Appowner_Password>
1. Did you verify the correct Oracle SID used in the SQL Developer connection settings?
2. Have you tried to connect to the DB from CMD(SQL*Plus) ? and still getting the issue?
- Set the oracle_sid and verify the access via ifsapp
> Set oracle_sid=<Database_SID>
> sqlplus/nolog
Sql > conn ifsapp/<Appowner_Password>
Yep, I have the correct SID and I tried connecting via SLQ Plus and I got the same error
I haven’t come across a scenario where the Oracle user password only works for specific interfaces.
Is this issue environment wide or happening on your machine specifically? Can you recreate the same issue on the DB Server itself?
One option you can try is to reset IFSAPP password to the one you can connect using IFS.
You try this command to reset the user password as SYS or sysdba user -
alter user ifsapp identified by <interface_password>;
Please make sure there are no password reuse limitations set for the ORACLE_PROFILE connected to IFSAPP user, prior to resetting the password.
OK this is quite strange, when I execute “Select * from sys.user$” in the SQL Query tool in IFS Apps 10, there isn’t an ifsapp user, just SYS, PUBLIC, DBA etc.
If I knew the default Apps 10 passwords for any of the above users I would try them but I don’t.
Do you see other IFS* users like IFSSYS, IFSPRINT etc? Which user are you connecting as whilst running your query?
Try this one to get listing of all IFS* users including IFSAPP -
select * from sys.user$ where name like 'IFS%';
A default password for SYS (Oracle user) you could try is ifsmanager
If you don't see the IFS% accounts in the “Select * from sys.user$” query then I would almost certainly suggest that you are not actually connecting to the database that you believe you are. I can’t think of any other way to explain that.
Nick
You have probably connected to the container database (CDB) instead of the pluggable database (PDB). If so, try command “show pdbs;” to identify the correct PDB instance (as IFS application is deployed to PDB and not to CDB) and change your tnsnames.ora accordingly.