ORA-00959: tablespace does not exist but I can see it in select
So, I am connected as SYSDBA to Oracle and trying to run this command:
Then I run:
EDIT
Continued according the comments, this is what I see when I run
create user C##demo identified by demopassword;
That ends with User created.Then I run:
alter user C##demo default tablespace PAVEL_DATA temporary tablespace PAVEL_TEMP;
Which ends in error:ORA-00959: tablespace 'PAVEL_DATA' does not existBut if I run this command:
SELECT TABLESPACE_NAME, STATUS, CONTENTS
FROM USER_TABLESPACES;
I can see the tablespaces: TABLESPACE_NAME STATUS CONTENTS
------------------------------ --------- ---------
SYSTEM ONLINE PERMANENT
SYSAUX ONLINE PERMANENT
TEMP ONLINE TEMPORARY
USERS ONLINE PERMANENT
UNDOTBS2 ONLINE UNDO
PAVEL_DATA ONLINE PERMANENT
PAVEL_TEMP ONLINE TEMPORARY
So, why am I getting the error tablespace does not exist when it is created?EDIT
Continued according the comments, this is what I see when I run
select tablespace_name, con_id from cdb_tablespaces :TABLESPACE_NAME CON_ID
------------------------------ ----------
PAVEL_DATA 1
PAVEL_TEMP 1
SYSTEM 4
SYSAUX 4
TEMP 4
USERS 4
TABLESPACE_NAME CON_ID
------------------------------ ----------
SYSTEM 3
SYSAUX 3
TEMP 3
USERS 3
EXAMPLE 3
PAVEL_TEMP 3
PAVEL_DATA 3
So, both tablespaces are created in DB$ROOT (id=1) and in pluggable
datavase (id>2). But still, when connected to the pluggable database,
I am getting the same error. It must be something stupid, but I am
blind now...
Demonstration
SQL> create user c##_sales_hr identified by password default tablespace tbs_sales;
create user c##_sales_hr identified by password default tablespace tbs_sales
*
ERROR at line 1:
ORA-65048: error encountered when processing the current DDL statement in
pluggable database ORAPDB1
ORA-00959: tablespace 'TBS_SALES' does not exist
SQL> select tablespace_name, con_id from cdb_tablespaces;
TABLESPACE_NAME CON_ID
------------------------------ ----------
SYSTEM 1
SYSAUX 1
UNDOTBS1 1
TEMP 1
USERS 1
TBS_SALES 1
SYSTEM 4
SYSAUX 4
TEMP 4
ORAPDB1_TBS1 4
MGMT_ECM_DEPOT_TS 4
11 rows selected.
SQL> alter session set container=orapdb1;
Session altered.
SQL> create tablespace tbs_sales datafile '+DATA' size 50M;
Tablespace created.
SQL> conn / as sysdba
Connected.
SQL> create user c##_sales_hr identified by password default tablespace tbs_sales;
User created.
No comments:
Post a Comment