ORA-01644 -- tablespace 'USERS' is already read only
Hi,
After executing DBMS_TTS.TRANSPORT_SET_CHECK Procedure I've switched the USERS Tablespace to READ ONLY mode and since then I'm not able to change it back to ONLINE mode.
SQL> alter tablespace users online;
Tablespace altered.
SQL> select TABLESPACE_NAME, STATUS from dba_tablespaces;
TABLESPACE_NAME STATUS
------------------------------ ---------
SYSTEM ONLINE
UNDOTBS1 ONLINE
SYSAUX ONLINE
USERS READ ONLY
EXAMPLE ONLINE
MUSIC ONLINE
TEMP00 ONLINE
UNDOTBS0007 ONLINE
8 rows selected.
SQL> alter tablespace users read only;
alter tablespace users read only
*
ERROR at line 1:
ORA-01644: tablespace 'USERS' is already read only
Please assist.
Thanks
Prashant D