美文网首页
Oracle plsql导出oracle11g导出时少表如何将空

Oracle plsql导出oracle11g导出时少表如何将空

作者: Rinaloving | 来源:发表于2019-10-10 16:59 被阅读0次

    首先执行下面sql语句

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

    然后复制上面语句执行结果,执行一遍,最后导出即可。

    相关文章

      网友评论

          本文标题:Oracle plsql导出oracle11g导出时少表如何将空

          本文链接:https://www.haomeiwen.com/subject/rkeapctx.html