12C -- ORA-65048 ORA-65048 创建common user的时候报错:

Posted 一叶知秋。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了12C -- ORA-65048 ORA-65048 创建common user的时候报错:相关的知识,希望对你有一定的参考价值。

转载至:https://www.cnblogs.com/abclife/p/6726909.html

 

创建common user的时候报错:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
$ sqlplus \'/as sysdba\'
 
SQL*Plus: Release 12.2.0.1.0 Production on Tue Apr 18 11:05:00 2017
 
Copyright (c) 1982, 2016, Oracle.  All rights reserved.
 
 
Connected to:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
 
SQL> create user c##backup_admin identified by backup_admin default tablespace users;
create user c##backup_admin identified by backup_admin default tablespace users
*
ERROR at line 1:
ORA-65048: error encountered when processing the current DDL statement in
pluggable database PLUG_TEST
ORA-65048: tablespace \'USERS\' does not exist
 
 
SQL> show con_name
 
CON_NAME
------------------------------
CDB$ROOT
 
SQL> alter session set container=plug_test;
 
Session altered.
 
SQL> select tablespace_name,status,contents from user_tablespaces; 
 
TABLESPACE_NAME                STATUS    CONTENTS
------------------------------ --------- ---------------------
SYSTEM                         ONLINE    PERMANENT
SYSAUX                         ONLINE    PERMANENT
UNDOTBS1                       ONLINE    UNDO
TEMP                           ONLINE    TEMPORARY
UNDO_2                         ONLINE    UNDO
 
SQL>

  

原因:

1
2
3
4
5
6
While creating a common userany default tablespace, temporary tablespace, or profile specified using the following clauses must exist in all the containers belonging to the CDB:
 
DEFAULT TABLESPACE
TEMPORARY TABLESPACE
QUOTA
PROFILE

  

解决方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SQL> alter session set container=plug_test;
 
Session altered.
 
SQL> create tablespace users datefile \'+da\' size 133m autoextend on next 640k maxsize unlimited;
 
SQL> alter session set container=cdb$root;
 
Session altered.
 
SQL>  create user c##backup_admin identified by backup_admin default tablespace users;
 
User created.
 
SQL>

以上是关于12C -- ORA-65048 ORA-65048 创建common user的时候报错:的主要内容,如果未能解决你的问题,请参考以下文章

Oracle 12c 多租户家族(12c 18c 19c)如何在 PDB 中添加 HR 模式

oracle 11g 和 12c 有啥区别?

oracle weblogic 11g和 12c的区别

12C是靠啥来区别不同的设备的

CenOS7 部署 数据库 Oracle 12c + 启动阶段与关闭状态 [12.2 企业版]

为 Jdeveloper 12c 配置 SOA 扩展