Converting database from ASG 2012 -> 2015
|
24-03-2015, 11:11 AM
Which step is executed - the error message is in front of the current step...
Regards/Gruss
Oliver
24-03-2015, 11:21 AM
(24-03-2015, 11:11 AM)DevOma Wrote: Which step is executed - the error message is in front of the current step... Sorry. See new attachment
24-03-2015, 04:05 PM
Ok - there are 2 possible ways how to fix (I hope so) - we had some issues with very large log data
You can check how many log entries do you have on your old sql database SELECT count(*) FROM vCCErrorLog If this count is very high (perhaps > 50k) then you should delete some logs before migrating (delete all in UI of error logs or set an automatic deletion in options like last 30 days - automatic deletion will execute when you start the program again) - or you could try to set a very high timeout in your new database environment to prevent an timeout error when executing the migration (edit your environment at startup and check "Set advanced options).
Regards/Gruss
Oliver
24-03-2015, 04:25 PM
(24-03-2015, 04:05 PM)DevOma Wrote: Ok - there are 2 possible ways how to fix (I hope so) - we had some issues with very large log data I get this value running the command in the database: 2934351 I have turned on deleting of log files after 30 days. Does not seem like anything happens. When I try to open logs, from Tools (menu) I get an error message. Do you have a script that can wipe the logs directly from the database?
24-03-2015, 04:44 PM
The fast way is to delete all :-)
TRUNCATE TABLE vCCErrorLog else every row will be deleted one by one and that could take a really long time :-) 30 minutes to 1 hour (or perhaps more) I guess... DELETE FROM vCCErrorLog WHERE _InsertDate < DATEADD(day, (-30), getutcdate())
Regards/Gruss
Oliver
24-03-2015, 04:59 PM
(24-03-2015, 04:44 PM)DevOma Wrote: The fast way is to delete all :-) That solved the issue. Thank you! |
« Next Oldest | Next Newest »
|
Users browsing this thread: 1 Guest(s)