删除表空间时报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、之后就可以删除了

发布了421 篇原创文章 · 获赞 67 · 访问量 39万+

猜你喜欢

转载自blog.csdn.net/w892824196/article/details/103909066