首页 > 其他 > 详细

12C -- ORA-65048 ORA-65048

时间:2017-04-18 13:12:42      阅读:2350      评论:0      收藏:0      [点我收藏+]

创建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> 

  

12C -- ORA-65048 ORA-65048

原文:http://www.cnblogs.com/abclife/p/6726909.html

(1)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!