Home
About
Contact
Categories
Classic ASP (28 - Sub-Categories)
CSS (1 - Sub-Category)
JavaScript (5 - Sub-Categories)
Databases (22 - Sub-Categories)
ASP.NET (24 - Sub-Categories)
Delphi (5 - Sub-Categories)
Windows Server Core (7 - Sub-Categories)
VMWare (1 - Sub-Category)
Code Editing Tools (2 - Sub-Categories)
Linux (2 - Sub-Categories)
Dell Servers (15 - Sub-Categories)
Blog Entries
2025 (1 - Entry)
Bug Reports
(Bugs Fixed
New CFFCS Coding Source is still in Beta
Please report any errors to the [Contact] page. Thank you.
Classic ASP (28)
CSS (1)
JavaScript (5)
Databases (22)
ASP.NET (24)
Delphi (5)
Windows Server Core (7)
VMWare (1)
Code Editing Tools (2)
Linux (2)
Dell Servers (15)
Tools
Format Your SQL Script
Minify your CSS
Previous
SQL Server How to get the number of Characters from a string in a column
Current Code Entry
Next
Databases
SQL Server
SQL Server Management Studio - Restore database
SQL Server Management Studio - Restore database
Article Entry Date: July 10,2022 @ 01:47:49 / Last Updated On: July 10,2022 @ 01:47:49
In this lesson, we will restore a database from a backup in SQL Server Management Studio.
Open SQL Server Management Studio.
Right-Click on the database.
Choose [
New Query
]
Paste the below code and click [
Execute
]
RESTORE DATABASE DatabaseName FROM DISK = 'I:\SQLBackup\01-26-2021\DatabaseName.bak'
WITH RECOVERY
GO
Tags
restore a database in SQL Server Management Studio
backup in SQL Server Management Studio