Database transfer: Improve database response time for the database containing the JCR domain
After transferring the database tables, run the dbms_stats.gather_schema_stats command to avoid slow database response.
Start SQL*Plus and log in to the jcr.DbName database as the jcr.DbUser user
Run...
SQL> execute dbms_stats.gather_schema_stats(ownname=> 'jcr.DbUser', cascade=> TRUE);
SQL > commit;
exit