Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

The tablespace I just created is not found

User_2SRRNApr 27 2023

I've setup a test database in a local VM. Why does it say the tablespace was not found, I just created it??

sqlplus sys/orcldb as sysdba
SQL> CREATE TABLESPACE logminer_tbs DATAFILE '/u02/oradata/CDB1/logminer_tbs.dbf' SIZE 25M REUSE AUTOEXTEND ON MAXSIZE UNLIMITED;

Tablespace created.

SQL> CREATE USER c##dbzuser IDENTIFIED BY dbz DEFAULT TABLESPACE LOGMINER_TBS QUOTA UNLIMITED ON LOGMINER_TBS CONTAINER=ALL;
*
ERROR at line 1:
ORA-65048: error encountered when processing the current DDL statement in
pluggable database PDB1
ORA-00959: tablespace 'LOGMINER_TBS' does not exist

Comments
Post Details
Added on Apr 27 2023
2 comments
525 views