12C -- ORA-65048 ORA-65048

本文记录了在Oracle 12c中创建commonuser时遇到ORA-65048错误的过程及解决办法。该错误提示指定的默认表空间不存在。通过在对应的可插入数据库中创建所需的表空间并设置正确的容器上下文,最终成功创建了用户。

创建common user的时候报错:

$ 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> 

  

原因:

While creating a common user, any 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

  

解决方法:

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> 

  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值