0
Good afternoon, A database this with status "In Recovery". While trying to parse the error log through this dbcc checkdb command, returns the following error message.
Database is beeing recovered. Wait until Recovery is finished.
This means that SQL Server itself is restoring the database automatically?
CONFIRMED: SQL starts and finishes the recovery process on its own. And the database becomes inaccessible in that period.
Now I have a bigger problem. The SQL service is consuming a lot of memory and is very slow in response time to perform a simple select.
And every time I try to restart the server, the database goes back in Recovery mode.
I tried to check the list of pending processes using SP_WHO2, and there are only two CHECKPOINT processes that appear constantly.
The server is idle, unused.
This problem occurred after the server restarted during a process that changed a table of 70 million records.
How to solve this problem?
Can you look at the size of your database log file?
– Sorack
The bank has 330 GB. LOG 80 GB. Free HD space is 1TB.
– Otavio Camargo
Tries to make a complete backup to clean the log file
– Sorack