0% found this document useful (0 votes)
2K views

How To Reset Opera PMS Application User Password? How To Reset Opera PMS Application User Password?

This document provides steps to directly reset the password for an Opera PMS application user by updating the password field in the APPLICATION$_USER table in the Oracle database. The steps are: 1) log into the Oracle SQL command line interface using the OPERA schema credentials, 2) run an UPDATE query to change the password and unlock the account for the specified user, 3) commit the changes, and 4) try logging in with the new password.

Uploaded by

limhoward
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views

How To Reset Opera PMS Application User Password? How To Reset Opera PMS Application User Password?

This document provides steps to directly reset the password for an Opera PMS application user by updating the password field in the APPLICATION$_USER table in the Oracle database. The steps are: 1) log into the Oracle SQL command line interface using the OPERA schema credentials, 2) run an UPDATE query to change the password and unlock the account for the specified user, 3) commit the changes, and 4) try logging in with the new password.

Uploaded by

limhoward
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

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:

Login to Oracle SQL PLUS:


1. Click Start.
2. In the Start Search box, type CMD, and then press ENTER.
3. Oncece on the Command Prompt Window
Window,, type: SQLPLUS OPERA/(your password) and press
ENTER

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.

http://www.operapmsexperts.com - The only


nly resource for OPERA PMS API implementations
4. Copy paste the below command, and press ENTER:

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.

5. Once entered, below appears:

Make sure just 1 row is updated.

6. COMMIT the changes:

7. Now you should be able to login with your new password.

http://www.operapmsexperts.com - The only resource for OPERA PMS API implementations

You might also like