EXP 导出 oracle 表的 时候,空表不被导出的解决方法

问题:如果ORACLE 有空表,在执行 EXP 的时候,空表不会被导出。

解决方法:

1、select 'alter table'||table_name||'allocate extent;'  from user_tables where num_rows=0

2、执行上述中查询出来的SQL .

3、执行EXP 导出,问题解决。

猜你喜欢

转载自doing.iteye.com/blog/1328019