When you do
FULL_CT = (SELECT COUNT(BOOK_ID)
FROM CJI_BOOK_RELEASE
WHERE TO_DATE(POP_DATE, 'MM/DD/YYYY')
full_ct will have the count at 00:00 AM. I think you need the count at 12:00 PM. Try this
FULL_CT = (SELECT COUNT(BOOK_ID)
FROM CJI_BOOK_RELEASE...
It seems your connection to the db is dropped after you launch the procedure, or you opened your session before a restart of the db.
There could also be a problem in the db engine, try to look at the alert.log file
You should do it without problems, if you have access to metalink, read note 132904.1.
How do you launch the import? Maybe the problem is in the way you launch it and not on the dump file.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.