Hi there,
Does anyone know what exactly does this validate structure validates??? We have brought over alot of parent and child records and they don't look right.. How do I check the integrity of my database?
Thanks,
Nirasha
Printable View
Hi there,
Does anyone know what exactly does this validate structure validates??? We have brought over alot of parent and child records and they don't look right.. How do I check the integrity of my database?
Thanks,
Nirasha
VALIDATE STRUCTURE validates the structure of the analyzed object. Oracle optimizer will not use these statistics unlike statistics collected by the COMPUTE STATISTICS and ESTIMATE STATISTICS clauses.
Validating the structure of an object prevents DML activity on the object. So, do not use this clause on the tables, clusters, and indexes of production applications during database activity which may lead to corruption of data/objects and endup recreating objects.
[Edited by sreddy on 01-18-2001 at 04:39 PM]
You want a different validate ( http://technet.oracle.com/docs/produ...integ.htm#4019 )
Right on target,
thanks alot.
Nirasha