zoukankan      html  css  js  c++  java
  • X ORA-65048: error encountered when processing the current DDL statement in pluggable database PLUG_TEST


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

    原因:【默认表空间,临时表空间,必须在每个pdb中都存在】

    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>

  • 相关阅读:
    使用Java实现对MySql数据库的导入与导出
    【转】揭开J2EE集群的神秘面纱
    Memcached深度分析
    HSQL入门及使用指南
    系统架构基础篇(高性能基础建设说明与选型条件)
    架构之美 摘抄
    JMS规范及相关实现
    spring3中使用@value注解获取属性值
    Thread Dump 分析综述
    什么中间件及中间件服务器?
  • 原文地址:https://www.cnblogs.com/chendian0/p/14667466.html
Copyright © 2011-2022 走看看