When connecting Oracle database using native ODBC or Qlik ODBC&OLE DB connector package, the following error message show up. So, we need to check if the username/password is valid.
Option #1. Creating UserID, changing Password and giving a permission, these are Oracle DBA roles. So you can ask DBA to check invalid userID.
Option #2. Check sqlplus connection between Oracle client and database server 1. Open CMD (Windows command prompt) on Qlik Product server
2. Move to c:/ directory C:\Document and settings\ORANGE> cd\
3. Set Oracle SID C:\> set oracle_sid=<DB name> e.g C:\> set oracle_sid= "Oracle DB Name" {press enter}
4. Login using sqlplus C:/ sqlplus <UserID>/<Password>@"Oracle_SID"
If you know sysdba password, you can use the following commend C:\> sqlplus /nolog {press enter} sql:\>connect sys as sysdba {press enter} password : sys {press enter} sql:\> connected sql:\> connect <UserID> {press enter} Enter password :tiger {press enter} sql:\> connected