概述
执行sql脚本
select 'alter table ' || table_name || 'allocate extent;'
from user_tables
where num_rows = 0
or num_rows is null;
将查询出来的语句复制到一个新的sql窗口执行
再执行sql语句,查询出来第二列为YES
select table_name, segment_created
from user_tables where num_rows = 0 or num_rows is null;
再重新导入dmp文件,就不会出现少表的情况了
最后
以上就是失眠老虎为你收集整理的ORACLE数据库中,dmp格式导入导出,表没有数据的情况下,该表导入会缺失的全部内容,希望文章能够帮你解决ORACLE数据库中,dmp格式导入导出,表没有数据的情况下,该表导入会缺失所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复