为提高效率,提问时请提供以下信息,问题描述清晰可优先响应。 【DM版本】:md8 【操作系统】: 【CPU】: 【问题描述】: 将表导出为.dump文件后发现数据 和select count() from table 查询数据不一致,select查询出来有30w数据量,而.dump里只导出了20w数据左右,且导出没有报错
可以 确认下 sql 的结果:
select count(*) from (select * from table where rownum<=10000000000) union all select count(*) from table;
优先考虑这个表的计数器,可能有问题。
可以 确认下 sql 的结果:
select count(*) from (select * from table where rownum<=10000000000) union all select count(*) from table;
优先考虑这个表的计数器,可能有问题。