0
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.

ユーザーを作成しようとしたら、ORA-65096が出た時の対処法

Last updated at Posted at 2019-01-30

概要

CDBでユーザーを作成しようとするとORA-65096が出ます。

SmartSelectImage_2019-01-30-17-28-31.png

対処法

1.現在の接続先を確認

show con_name

SmartSelectImage_2019-01-30-17-35-23.png

現在、CDBに接続していることを確認できました。

2.接続先を変更

alter session set container = PDB名;

SmartSelectImage_2019-01-30-17-35-29.png

再確認

SmartSelectImage_2019-01-30-17-35-48.png
PDBに接続することができました。

3.ユーザー作成

CREATE USER ユーザー名 IDENTIFIED BY パスワード;
オプション
DEFAULT TABLESPACE 表領域名
TEMPORARY TABLESPACE 表領域名

SmartSelectImage_2019-01-30-17-36-14.png

4.接続確認

CONNECT ユーザー名/パスワード AS SYSDBA

SmartSelectImage_2019-01-30-17-36-40.png

無事、ユーザー作成が完了いたしました。

0
0
1

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
0
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?