First Check the old
values
SQL> select
* from sys.aux_stats$;
Create a new and old
Statistics Table
SQL> exec
dbms_stats.create_stat_table(ownname=>'SYS',stattab=>'backup_stats');
SQL> exec
dbms_stats.create_stat_table(ownname=>'SYS',stattab=>'current_stats');
Save the old
Statistics
SQL> exec
dbms_stats.export_system_stats(stattab=>'backup_stats');