天天看点

oracle数据库10G客户端导出11G数据文件,空表不能导出

10G客户端导出11G数据文件,如果存在空表,是不能导出的,解决办法:

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

2.执行上一步查询出来的语句。

3.正常导出dmp文件。