Change Oracle Database User Password Oracleデータベースのユーザのパスワードを変更
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. Oracleデータベースのセキュリティを確保するためのシステムとは、 Oracleデータベースの不正アクセスを防ぐことが重要for Oracleのユーザーが強いと長いだけでなく、 Oracleのパスワードを使用してブルートフォースや辞書攻撃を避けるために、だけでなく、 Oracleユーザーのパスワードを変更するに定期的にです。 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. Oracleのユーザのパスワードを変更するときも、パスワードの有効期限が行くのか、もしデータベースのシステム管理者パスワードの厳格なコントロールを実装し、強制オプションをユーザープロファイルをpassword_life_timeの日数を制限して、パスワード認証に使用されることにログインするには、システムです。
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. Oracleのパスワードを変更するには、ユーザーはSQL * Plusで使用またはOracle SQLおよびPL / SQLの言語インターフェイス管理ツールfor Oracleのようなヒキガエルです。 No matter what SQL apps you use, the commands and SQL query languages used to change the password are similar.どんなのSQLアプリを使用する、 SQLクエリ言語で使用されるコマンドおよびパスワードを変更するには似ています。
There are two SQL command syntaxes that can be used to change Oracle database user password: SQLコマンドの構文には2つのに使われることができるOracleデータベースのユーザのパスワードを変更する:
ALTER USER user_name IDENTIFIED BY new_password ;ユーザuser_nameで識別さを変更new_password ;
or (from Oracle8 and above):または( oracle8以上) :
PASSWORDパスワード
For above SQL query, if you need to change another user’s password, use the following command:上記のSQLクエリを実行するため、する必要がある場合、他のユーザーのパスワードを変更するには、次のコマンド:
PASSWORD user_name user_nameのパスワード
For PASSWORD command, after you press Enter, you will be prompted to input the old password and new password interactively.パスワードのコマンドで、後にEnterキーを押して、プロンプトが表示されたら古いパスワードと新しいパスワードを入力して対話します。 For example:例えば:
SQL> passwordのSQL >パスワード
Changing password for DAVIDデビッドのパスワードを変更する
Old password:古いパスワード:
New password:新しいパスワード:
Retype new password:新しいパスワードを再入力:
Note: You need to have enough privileges to change other Oracle user’s password.注:必要な十分な権限を変更するには他のOracleユーザのパスワードを入力します。
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. イタリック体としての変数は、暗黙の名前で、 user_nameは、ユーザーのパスワードを変更する願い、およびnew_passwordを割り当てるには、新しいパスワードを入力します。
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. SQL構文を変更ユーザとしては、新しいパスワードを送信して暗号化の場合は、 Oracleデータベースサーバーを使用せず高度なセキュリティオプション、およびセキュリティ上のリスクにさらすこのように、 Oracleのユーザーは、常にコマンドを使用してパスワードを変更するにOracleユーザーのパスワードを入力します。
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 重要 :これは、機械翻訳ページで提供"現状有姿"を保証します。 Machine translation may be difficult to understand.機械翻訳を理解するのは難しいかもしれません。 Please refer toを参照してください original English articleオリジナルの英語記事索引 whenever possible.いつ可能です。
Share and contribute or get technical support and help atを共有して貢献や技術サポートとヘルプを得る My Digital Life Forums 私のデジタルライフフォーラム .です。
Related Articles関連記事
- Oracle Database Link Oracleデータベースのリンク
- Oracle Database Import Error 3113/3114 Oracleデータベースにインポートエラーが発生3114分の3113
- Oracle EXP-00091 Error When Export Database Oracleの輸出- 00091エラーが発生する輸出データベース
- Check Oracle Version Oracleのバージョンを確認
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete DatafileどのようドロップOracleデータベースのテーブルスペースを回復DATAFILEのときに誤って削除
- View and Retrieve Oracle Database Link Details Oracleデータベースのリンクを表示し、取得の詳細
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error作成、追加、またはOracleデータベースのパーティション分割が失敗するのOra - 14080エラーが発生
- Manual and Clean Uninstall Oracle for Windowsオラクル、 Windowsのマニュアルおよび清潔度をアンインストール
- Oracle JDeveloper Reviewsオラクルjdeveloperレビュー
- How to Rename or Move Oracle Tablespace Datafile to Another Location Oracleのテーブルスペースの名前を変更する方法についてまたはDATAFILEのを別の場所に移動する
































