1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00

Update setup.sql

This commit is contained in:
Yassine
2017-05-30 09:50:10 +02:00
committed by GitHub
parent 4d5d87724e
commit 6567045fb5

View File

@ -1,5 +1,5 @@
-- Before we start, we need to restore the database
-- Step1: Download the compressed backup file (url)
-- Step1: Download the backup file (url)
--Save the file on a location where SQL Server can access it. For example: C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\Backup\
-- In a new query window in SSMS, execute the following restore statement, but REMEMBER TO CHANGE THE FILE PATHS
@ -12,4 +12,4 @@ RESTORE DATABASE velibDB
WITH
MOVE 'velibDB' TO 'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\DATA\velibDB.mdf'
,MOVE 'velibDB_log' TO 'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\DATA\velibDB.ldf';
GO
GO