rman - clone verification
Oracle 11.2.0.3
OS; Linux 6
I have 70 TB database. After I clone it, how would I make sure the clone database is the exact copy of the production and no database objects have been corrupt or missing? I usually run query such as bellow to compare objects in both databases and run select * from some large tables, what else should you suggest?
select owner, count(object_name) from dba_objects
group by owner
order by owner
select owner, object_type, count(*) from dba_objects
group by owner, object_type
order by owner, object_type