Oracle Autonomous Database でのユーザーの作成
PTC Solution Installer (PSI) を使用して Oracle Autonomous Database をインストールする前に、SQL クライアントツールを使用してユーザーを作成し、インストール時にその資格証明を使用します。詳細については、
データベース情報の入力を参照してください。
ユーザーを作成するには、次の手順を実行します。
1. SQL クライアントツール (SQLplus など) を使用し、管理者ユーザーの資格証明で Oracle Autonomous Database に接続します。
2. 以下のコマンドを使用して、ユーザーを作成します。
SQL> create user &&user identified by &&password;
Enter value for user: <user>
Enter value for password: <password>
old 1: create user &&user identified by &&password
new 1: create user <user> by <password>
|
|
プロンプトが表示された際、ユーザー名とパスワードを入力します。
|
3. 次のコマンドを使用して、必要な権限をユーザーに付与します。
SQL> grant connect, resource to &&user;
SQL> grant create sequence, create view, unlimited tablespace to &&user;
SQL> undefine user;