Steps for Importing and Exporting statistics from one database to other database.
=================================================================================
1) exec dbms_stats.create_stat_table(ownname=>'OWNER_NAME',stattab=>'MY_STAT_TABLE');
example: exec dbms_stats.create_stat_table(ownname=>'SYS'stattab=>'MY_STAT');
2) exec dbms_stats.export_schema_stats(ownname=>'ENTER_THE_OWNER_NAME',
stattab=>'ENTER_THE_TABLE_NAME_CREATED_ABOVE',statown=>'ENTER_OWNER_OF_MY_STAT_TABLE');
example: dbms_stats.export_schema_stats(ownname=>'SCOTT',stattab=>'MY_STAT',STATOWN=>'SYS')
3) export the table created with statistics data contained. (as a .dmp file)
4) Transfer the data to another database where statistics is to be imported.
5) import the (.dmp file) to the datbase.
6) exec dbms_stats.import_schema_stats(ownname=>'Enter_the_own_name_statistics_gathered_schema',
stattab=>'ENTER_THE_TABLE_NAME_CREATED_ABOVE',statown=>'Enter_the_owner_name_of_the_table_containing_data_of_statistics',force=>true);
example: exec dbms_stats.import_schema_stats(ownname=>'SCOTT',stattab=>'MY_STAT',statown=>'SYS',force=>true);
=================================================================================
1) exec dbms_stats.create_stat_table(ownname=>'OWNER_NAME',stattab=>'MY_STAT_TABLE');
example: exec dbms_stats.create_stat_table(ownname=>'SYS'stattab=>'MY_STAT');
2) exec dbms_stats.export_schema_stats(ownname=>'ENTER_THE_OWNER_NAME',
stattab=>'ENTER_THE_TABLE_NAME_CREATED_ABOVE',statown=>'ENTER_OWNER_OF_MY_STAT_TABLE');
example: dbms_stats.export_schema_stats(ownname=>'SCOTT',stattab=>'MY_STAT',STATOWN=>'SYS')
3) export the table created with statistics data contained. (as a .dmp file)
4) Transfer the data to another database where statistics is to be imported.
5) import the (.dmp file) to the datbase.
6) exec dbms_stats.import_schema_stats(ownname=>'Enter_the_own_name_statistics_gathered_schema',
stattab=>'ENTER_THE_TABLE_NAME_CREATED_ABOVE',statown=>'Enter_the_owner_name_of_the_table_containing_data_of_statistics',force=>true);
example: exec dbms_stats.import_schema_stats(ownname=>'SCOTT',stattab=>'MY_STAT',statown=>'SYS',force=>true);