ORA-01659的解决办法

使用imp导入数据库是出现ora-01695错误,此错误时由于表空间小所导致,解决办法如下四种:
1。 加空间。增加原表空间大小
  ALTER DATABASE DATAFILE '/dev/vg01/file.dbf'
RESIZE  999M;

2。 exp compress=n
3。create table first, and then imp ignore=y
4。consider out of line lob and put lob  in dedicated tablespace.

你可能感兴趣的:(ORA-01659的解决办法)