SOLVED

ORA-30033: Undo Tablespace Cannot Be Specified As Default User Tablespace

Asked by OracleDba14 viewsoracle

ORA-30033: Undo Tablespace Cannot Be Specified As Default User Tablespace

#oracle#error

Solutions(1)

Accepted Solution
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
As the error suggests, we can’t set an undo tablespace as default tablespace for a user.

We can get the type of tablespace by using below query.

SQL> select tablespace_name,contents from dba_Tablespaces;

TABLESPACE_NAME CONTENTS

------------------------------ ---------

SYSAUX PERMANENT

SYSTEM PERMANENT

TEMP TEMPORARY

TEST PERMANENT

TEST_2 PERMANENT

TS_CRM_EXTCH PERMANENT

TS_GGATE PERMANENT

USERS PERMANENT

UNDOTBS1 UNDO ------ >>>>

So just use a tablespace with PERMANENT type,

SQL> alter user Testuser default tablespace TS_GGATE;

User altered.
OracleDba

Post Your Solution