Change Oracle Database User Password Cambia database Oracle Utente Password
To ensure security of the Oracle database system and prevent unauthorized access to the Oracle database, it’s important for Oracle users to not only using strong and long Oracle passwords to avoid brute force or dictionary attacks, but also to change the Oracle user password regularly. Al fine di garantire la sicurezza del sistema di database Oracle e impedire l'accesso non autorizzato ai database Oracle, è importante per Oracle agli utenti di utilizzare non solo forte e lungo Oracle password al fine di evitare la forza bruta o dizionario attacchi, ma anche per cambiare la password utente di Oracle regolarmente . Oracle users also have to change the password when the password has or going to expire, if database system administrator implements and enforces strict password control with PASSWORD_LIFE_TIME option for user profiles which limits the number of days the password can be used for authentication to login to the system. Oracolo gli utenti devono anche modificare la password quando la password è in corso o alla scadenza, se del database di amministratore di sistema implementa e applica la password di controllo rigoroso PASSWORD_LIFE_TIME con opzione per i profili utente che limita il numero di giorni la password può essere utilizzato per l'autenticazione per accedere al sistema.
To change the Oracle password, users can use SQL*Plus or Oracle SQL and PL/SQL language interface administration tool such as Toad for Oracle. Per cambiare la password di Oracle, gli utenti possono utilizzare SQL * Plus o Oracle SQL e PL / SQL interfaccia in lingua strumento di amministrazione come ad esempio Toad per Oracle. No matter what SQL apps you use, the commands and SQL query languages used to change the password are similar. Non importa quale SQL si utilizza applicazioni, i comandi e query SQL lingue utilizzate per modificare la password sono simili.
There are two SQL command syntaxes that can be used to change Oracle database user password: Ci sono due comando SQL sintassi che può essere utilizzato per modificare database Oracle password utente:
ALTER USER user_name IDENTIFIED BY new_password ; ALTER USER nome_utente IDENTIFIED BY new_password;
or (from Oracle8 and above): o (da Oracle8 e superiori):
PASSWORD
For above SQL query, if you need to change another user’s password, use the following command: Per query SQL di cui sopra, se avete bisogno di cambiare un altro utente, la password, utilizzare il seguente comando:
PASSWORD user_name PASSWORD nome_utente
For PASSWORD command, after you press Enter, you will be prompted to input the old password and new password interactively. PASSWORD per comando, dopo aver premuto Invio, ti verrà richiesto di inserire la vecchia password e nuova password interattivamente. For example: Per esempio:
SQL> password SQL> password
Changing password for DAVID Cambiare password per DAVID
Old password: Vecchia password:
New password: Nuova password:
Retype new password: Riscrivi la nuova password:
Note: You need to have enough privileges to change other Oracle user’s password. Nota: è necessario disporre di privilegi sufficienti per modificare altri Oracle password dell'utente.
As the variable in italic implied by name, user_name is the user whose password wishes to be changed, and new_password is the new password to assign. Come la variabile in corsivo implicita di nome, nome_utente è la password utente di cui desidera essere cambiato, e new_password è la nuova password per assegnare.
As ALTER USER SQL syntax will send the new password to the Oracle database server unencrypted if use without Advanced Security Option, and thus expose to security risk, Oracle users should always use the PASSWORD command to change the Oracle user password. ALTER USER come sintassi SQL invierà la nuova password per il server di database Oracle in chiaro se l'uso senza opzione di protezione avanzata e, quindi, esporre a rischio per la sicurezza, Oracle gli utenti dovrebbero utilizzare sempre il comando Password per cambiare la password utente di Oracle.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Questa è una pagina tradotta macchina che è fornito "così com'è" senza alcuna garanzia. Machine translation may be difficult to understand. Traduzione automatica può essere difficile da capire. Please refer to Si prega di fare riferimento a original English article articolo originale in lingua inglese whenever possible. quando possibile.
Share and contribute or get technical support and help at Condividere e contribuire o ottenere supporto tecnico e assistenza in My Digital Life Forums La mia vita digitale Forum .
Related Articles Articoli correlati
- Oracle Database Link Oracle database di link
- Oracle Database Import Error 3113/3114 Database Oracle errore di importazione 3113/3114
- Oracle EXP-00091 Error When Export Database Oracle exp-00091 errore durante l'esportazione del database
- Check Oracle Version Verificare la versione di Oracle
- View and Retrieve Oracle Database Link Details Visualizzare e recuperare i database Oracle link dettagli
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Come goccia tablespace e recuperare database Oracle quando accidentalmente eliminare archivio dei dati
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Creare, aggiungere o Spalato Oracle Database partizione non riesce a ORA-14080 Errore
- Manual and Clean Uninstall Oracle for Windows Pulizia manuale e la disinstallazione di Oracle per Windows
- Oracle JDeveloper Reviews Oracle JDeveloper recensioni
- How to Rename or Move Oracle Tablespace Datafile to Another Location Come rinominare o spostare Oracle tablespace archivio dei dati in un'altra posizione














