Rebuilding Indexes and Analyzing schema in 9i
Hi,
We can Rebuild the index and analyze the same on 10g as follows :
1. SQL> alter index INDEX_NAME rebuild online;
2. SQL>exec dbms_stats.gather_schema_stats(ownname=>'SCHEMA_NAME',estimate_percent=>dbms_stats.auto_sample_size,cascade=>true);
Now I want to perform the same for a 9.2.0.8 database (on Windows 2003 server OS).
Thanks in advance