IMP-00058: 遇到 ORACLE 错误 1659,ORA-01659: 无法分配超出 7 的 MINEXTENTS (在表空间 USERS 中)
ORA-01659分析: USERS表空间不够
ORA-01659解决办法:
1、查询表空间文件位置
select file_name from DBA_DATA_FILES where tablespace_name ='USERS'
2、 增加表空间:
alter tablespace USERS add datafile 'F:\APP\ADMINISTRATOR\ORADATA\ORCL\USERS03.DBFF' size 20480M autoextend on next 100M maxsize unlimited;
原文链接:http://www.jxszl.com/biancheng/shujuku/299095.html
最新推荐
热门阅读