How Does SQL Server Handle Database Recovery When It Is Restarted?
To restore sql database you need to use following source SQL Server Repair Toolbox software very likely will help you
Whenever Microsoft SQL Server is restarted, each database automatically performs a recovery operation. Since SQL Server uses the transaction log, the following happens when SQL Server restarts: Uncommitted transactions (those that were ongoing at the time SQL Server was shut down or when the system failed) are rolled back. Transactions that were committed between the last checkpoint and the failure are checked and rolled forward. http://www.cisco.com/warp/customer/78/21.
Related Questions
- I want to use Merge Replication to synchronise data to my SQL Server CE database. Are there any how-to whitepapers available?
- Why do results of recovery contain less data than the original SQL Server database, backup and log?
- Why do results of recovery contain less data than the original SQL Server database, backup and log?
- Can Recovery for SQL Server repair my SQL Server database, backup and log?
- Can Recovery for SQL Server repair my SQL Server database, backup and log?
- How Does SQL Server Handle Database Recovery When It Is Restarted?