1、
原因是r2没有给空表分配表空间。解决办法,执行语句
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0
'ALTERTABLE'||TABLE_NAME||'ALLOCATEEXTENT;
把查询出的语句执行一遍,在导出整个库即可。
2、IMP-00017:由于ORACLE错误6550
版本问题。导入时增加statistics=none
1、
原因是r2没有给空表分配表空间。解决办法,执行语句
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0
'ALTERTABLE'||TABLE_NAME||'ALLOCATEEXTENT;
把查询出的语句执行一遍,在导出整个库即可。
2、IMP-00017:由于ORACLE错误6550
版本问题。导入时增加statistics=none