How to Copy Table stats from one database to another database If we want to migrate the stats from One database to other database, we can follow below steps. 1) Create a stat table in the source database. The statistics table is created in APPS schema. connect as APPS exec dbms_stats.create_stat_table(ownname => 'APPS', stattab => 'STAT_TAB'); select * from tab where TNAME='STAT_TAB'; TNAME TABTYPE CLUSTERID ------------------------------ ------- ---------- STAT_TAB TABLE 2) Export the table statistics. exec dbms_stats.export_table_stats(ownname=>'INV',tabname=>'MTL_SYSTEM_ITEMS_TL',statown=>'APPS',stattab=>'STAT_TAB',cascade=>TRUE); 3) Then take export backup of table STAT_TAB from schema APPS. COPY the dump file to target server. I did on shared path. RESTORE_DIR /oracle/stage/RESTORE_DIR cat > exp_stat.ctl userid=APPS/apps directory=DATA_PUMP_DIR tables=STAT_TAB dumpfile=exp_stat.dmp LOGFILE=exp_s...