|
Today I have rebooted my Win2008 Server with SQL Server 2008 running on it. After rebooting SQL Server marked my database as "In recovery", so I can't use this database until recovering finished. The question is - how much dose it takes to finish recovery...
Started by lak-b on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try doing the following....
Still applies, KB 820835
From the MS CSS engineers
Paul Randall's "In recovery" blog (can't wasn't finished.
First, refresh SSMS/check SQL error log to see if it has complted
Second, read these while you wait...
Reasons.
|
|
I am looking at a large-ish SQL Server 2005 database, that has entered into Recovery mode, and I am wondering if there is any way to estimate how long it's going to be until the database has recovered?
Started by blueberryfields on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Slightly cheeky, but you could read " Understanding Recovery Performance in SQL Server " while you wait....
Progress in the SQL error log.
|
|
I have a fairly large SQL Server database that is using SIMPLE recovery mode. We don't really have a need for up to the second recovery so i'd prefer we stay with this mode.
For some reason the transaction log for this database is massive (410 GB) with...
Started by Eric on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
After that your huge log file can be safely deleted .
SQL Server will create a new log file.
The database.
|
Ask your Facebook Friends
|
This might be a bit of a naive question and probably something I should know by now but here goes..
I restored a 35Gb database on my dev machine yesterday and it was all going fine until this morning when my client app couldn't connect. So I opened SQL...
Started by Stimul8d on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Check the error logs.
Let it finish.
To stop the recovery is shutdown the sql server, but when the server restart...the recovery start again!
Do not shut down SQL while recovery is in progress.
|
|
We have a database in SQL Server 2008 for which the Recovery model is set to Simple .
Periodically, we run a big update on a big table (15 million rows to update). To accomplish this, we run a Stored Procedure which takes 2 hours+ to run. When the Stored...
Started by MaxiWheat on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
SQL Server won't automatically shrink the log unless.
To break up the operations to minimize log growth.
|
|
SQL Server 2005 dropped a user from one of our mirrored databases after we recovered from a simple Windows-update induced restart of the machine.
I checked and the login is not in the mirror server (it is in the primary). If the system experienced a failover...
Started by Matt Rogish on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
If the user was there when you setup mirroring, even if the login did not exist, SQL.
Not sync'd to a login.
|
|
When you read this, you just might cry...
We wrote a SharePoint intranet app for the one of our clients that keeps track of files and manages them through various levels of approval. Several files containing important data were accidentally deleted between...
Started by Jamo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
What you could try (until someone here with more in depth SQL knowledged chimes in) is to shut down SQL Server, make....
I believe the transaction log.
I've never used it but Apex SQL Log has a free download and might fix your issue.
|
|
I've just read through a lot of MSDN documentation and I think I understand the different recovery models and the concept of a backup chain. I still have one question:
Does a full database backup truncate the transaction log (using full recovery mode)...
Started by Heinzi on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at serverfault):
A transaction log to look closely at how SQL Server does backups but know that in-flight/long running transactions & in that time, the pages copied....
Thanks
A full back up does NOT truncate the log .
Logging and Recovery in SQL Server .
|
|
I am trying to recover the password for one of the logins on a SQL 2005 (SP3) database. There seem to be a large number of tools out there to do this.
I'm a little nervous of running a tool against a live database server that I don't know much about.
...
Started by ilivewithian on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
They even helpfully supply C++ source.
Cracking-sql-passwords.pdf , describes how their cracker works.
|
|
I have full weekly backups, daily differential backups and hourly transaction log backups.
To restore the database, I restore the full backup, then the last dif backup then all the transaction log backups specifying NORECOVERY on all the restores except...
Started by Robin Day on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
RESTORE DATABASE [MyDatabase] WITH RECOVERY
It didn't even occur to me that you can run the RESTORE DATABASE dbname WITH RECOVERY.
|