How to generate password oracle?

Asked By 30 points N/A Posted on -
qa-featured

Hi guys,

How to generate password oracle? I am using oracle database for a department store system. Is there a way to put a password on my oracle database to secure all the data encoded in the database such as product name, prices, quality, inventory and etc. Security is very important.

Expecting some help, thank you.

SHARE
Answered By 5 points N/A #188676

How to generate password oracle?

qa-featured

Dear berry,

For security of oracle database and to prevent unauthorized access to the database oracle user must use a strong and long password. This is very helpful to protect personal/business information stored in the dictionary. The password should be changed regularly.

You can use alter user command to change your oracle database password. The codes are as follows:

“ALTER USER user_name IDENTIFIED BY new_password; “

This will generate a password. You need to remember it for further use.

Thank you.

Related Questions