About 384,000 results
Open links in new tab
  1. sql - database restore failing with move - Stack Overflow

    Feb 19, 2013 · For SQL Server 2008 R2 open the 'Options' and for File Name 'ARCHIVE_XX' Select Restore As change to different filename (.mdf). – skstar Commented Nov 11, 2014 at 9:31

  2. sql server - bak file not visible when trying to restore database ...

    Paste here the Log on account name of sql service account which you had copied earlier. then Click on check name button. Select MSSQLSERVER then click ok. Now you will get your sql …

  3. How to query last restore date in SQL Server?

    Jun 1, 2016 · WITH MostRecentRestore AS ( SELECT RowNum = ROW_NUMBER() OVER (PARTITION BY RH.Destination_database_name ORDER BY RH.Restore_Date DESC), …

  4. sql server - mssql '5 (Access is denied.)' error during restoring ...

    The account that sql server is running under does not have access to the location where you have the backup file or are trying to restore the database to. You can use SQL Server Configuration …

  5. Best script to restore multiple databases with SQL Server 2012?

    Next, update the script below to restore the databases from the backup files. Replace C:\Backup\ with your local directory containing your .BAK files and replace C:\Microsoft SQL …

  6. SQL-Server: Is there a SQL script that I can use to determine the ...

    Script to check the Backup and Restore progress in SQL Server:. Many times it happens that your backup (or restore) activity has been started by another Database Administrator or by a job, …

  7. sql server - Restore SQL Database with Replace option - Stack …

    Aug 25, 2016 · RESTORE DATABASE [Test2] FROM DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\Backup\Test1.bak' WITH REPLACE, …

  8. SQL RESTORE WITH RECOVERY; Hangs at 100% - Stack Overflow

    May 6, 2015 · I am attempting to recover a database with SQL Server 2014 and it keeps hanging at 100%. A lot of people suggest that the solution is to just make sure that you restore with the …

  9. sql server - When restoring a backup, how do I disconnect all …

    Jul 20, 2009 · SQL Server Management Studio 2008. The interface has changed for SQL Server Management studio 2008, here are the steps (via: Tim Leung) Right-click the server in Object …

  10. Import .bak file to a database in SQL server - Stack Overflow

    Although it is much easier to restore database using SSMS as stated in many answers. You can also restore Database using .bak with SQL server query, for example. RESTORE DATABASE …

Refresh