数据对比方案——用于数据同步后一致性检查王子旭1 查看当前数据库所有的表select tablespace_name, table_name,status,num_rows,last_analyzed from user_tables where temporary ='N' order by table_name2 查看当前数据库所有的索引数量select table_name,count(*)as "索引数量" from user_ind_columns where table_name in (selec...