3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[OCI] Autonomous Database) SQL Developer Webの接続ユーザの変更してみた。

Last updated at Posted at 2020-03-24

OCI Autonomous Database(ADW/ATP)では、デフォルトでSQL Developer Webが構成されています。
Webコンソールから起動するSQL Developer Webは、ADMINユーザで接続するように構成されています。
ADMINユーザ以外のDatabaseユーザで接続する方法を試しました。

参考情報

Databaseユーザの作成

ADMINユーザでAutonomous Databaseに接続し
Databaseユーザを作成、必要な権限の付与(表領域Quataなど)

create user demo identified by <demo user password>;
grant connect,resource to demo;
ALTER USER demo QUOTA UNLIMITED ON DATA;

ユーザー・アクセスの有効化

引き続きADMINユーザで次のコードを実行

begin    
  ords_admin.enable_schema(
    p_enabled => true,
    p_schema => 'DEMO', -- Actual name of the schema
    p_url_mapping_type => 'BASE_PATH',
    p_url_mapping_pattern => 'api', -- Alias used in the URL for access
    p_auto_rest_auth => true
  );

  commit;

end;
  • p_schema => 接続するすべて大文字のデータベース・スキーマ名
  • p_url_mapping_pattern => ユーザーがSQL Developer Webへのアクセスに使用するURLに表示されるスキーマ名の別名
    • スキーマ名自体は使用を避けることでスキーマ名が公開されない

SQL Developer Webの起動とアクセスするURLの変更

  1. WebコンソールからAutonomous Database の詳細から「ツール」をクリック
    image01.jpg

  2. 「SQL Developer Webを開く」をクリック
    image02.jpg

  3. 表示されるURLの文字列の「admin」を p_url_mapping_pattern で指定した文字列に変更
    image03.jpg

  4. p_schema で指定したデータベースユーザでログイン
    image04.jpg

  5. 指定したユーザでログインされていることを確認
    image05.jpg

--
SQL Developer Webの接続ユーザの変更ができました。

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?