[Oracle实战]解决oracle数据库空表无法导出的问题,oracle11g
我的oracle11g2r空表无法导出,应对问题解决方案:
在navicat中运行sql:
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0
显示
将结果的alter table ... 所有的复制出来
运行一遍
然后再用plsql 导出就可以了
我的oracle11g2r空表无法导出,应对问题解决方案:
在navicat中运行sql:
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0
显示
将结果的alter table ... 所有的复制出来
运行一遍
然后再用plsql 导出就可以了