How To Reset Opera PMS Application User Password? How To Reset Opera PMS Application User Password?
How To Reset Opera PMS Application User Password? How To Reset Opera PMS Application User Password?
If you are an IT manager at a hotel that uses Opera PMS, sometimes, it is possible that you forget your
own password, it can be your IT Manager user account with not having access to Opera PMS
SUPERVISOR password to login to change your IT Manager account password. Or, it can also be the
SUPERVISOR account itself.
Rather than waiting for your support company's assistance, you can follow below steps to change your
application password, provided you have the DB access. Assuming the IT Manager having the Oracle
database login details (We will cover how to change Oracle database password in another paper),
paper) we
will step through how we can change the application password directly on Oracle Database:
SQLPLUS - is the
he command to get into the DB console (command-line line user interface)
OPERA - is the schema where live system related collection of all objects reside.
/(your password) - is the schema password for OPERA (also called user)
You're right into OPERA schema , the live OPERA PMS data.
UPDATE APPLICATION$_USER
SET
APP_PASSWORD = 'NEWPASSWORD',
ACCOUNT_LOCKED_OUT_YN = 'N',
LOCKOUT_DATE = NULL
WHERE
APP_USER = 'SUPERVISOR';
APPLICATION$_USER - is the table that stores all the USER or USER GROUP info (here
our concern in only USER)
APP_PASSWORD - Password field, always make sure to have it CAPS. Remember, when
you directly, change it here, it does not abide by Opera PMS password policies, so you
can even have 1 letter password
ACCOUNT_LOCKED_OUT_YN and LOCKOUT_DATE - is to make sure you're not locked
out
APP_USER - is the user name you use to login. IMPORTANT: Make sure you don't forget
this WHERE clause, or you will end up changing password for all users including internal
users that may create interface issues as well as other users, obviously.