删除表空间时报ORA-12919

ORA-12919: Can not drop the default permanent tablespace

解决方法:

1、先查询默认永久表空间:

select * from database_properties where property_name='DEFAULT_PERMANENT_TABLESPACE';


2、修改默认永久表空间:

alter database default tablespace USERS;


3、之后就可以删除了

你可能感兴趣的:(ORACLE)