Create ORAPWD ORACLE PASSWORD FILE
REMOTE_PASSWORD_LOGIN parameter is set in init.ora parameter remote_login_passwordfile. This parameter must be set to either SHARED or EXCLUSIVE. When set to SHARED, the password file can be used by multiple databases, yet only the SYS user is recognized. When set to EXCLUSIVE, the file can be used by only one database, yet multiple users can exist in the file. The parameter setting can be confirmed by: SQL > show parameter password NAME TYPE VALUE ----------------------------- ----------- ---------- remote_login_passwordfile string EXCLUSIVE To Create the password file. This is done by executing the following command $ orapwd file=filename password=password entries=max_users The file name is the name of the file that will hold the orapwd password information. The file location will default to the ...