oracle exp 无法导出空表

 

select 'alter table '|| a.table_name ||' allocate extent;' from user_tables a where a.table_name not in (select segment_name from user_segments where segment_type = 'TABLE');

 

执行查出的sql语句,再导出dmp,就能导出空表了。

Oracle 11g无法导出空表的处理方法

在SQL窗口(SQL Window)中 执行以下SQL

 

SQL> select 'alter table '||table_name||' allocate extent;' from user_tables where initial_extent is NULL

oracle exp 无法导出空表

将复制查询结果放置到SQL窗口(SQL Windows)中执行

相关文章:

  • 2021-11-07
  • 2022-02-27
  • 2021-07-26
  • 2021-10-31
  • 2021-12-04
  • 2021-06-11
猜你喜欢
  • 2021-08-24
  • 2021-09-08
  • 2022-12-23
  • 2022-12-23
  • 2021-05-31
  • 2022-01-24
相关资源
相似解决方案