删除表空间时报ORA-12919

来源:互联网 发布:看新闻联播的软件 编辑:程序博客网 时间:2024/05/17 22:28

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、之后就可以删除了

0 0
原创粉丝点击