diff --git a/samples/features/machine-learning-services/python/getting-started/bike-sharing prediction/setup.sql b/samples/features/machine-learning-services/python/getting-started/bike-sharing prediction/setup.sql new file mode 100644 index 00000000..e28c4968 --- /dev/null +++ b/samples/features/machine-learning-services/python/getting-started/bike-sharing prediction/setup.sql @@ -0,0 +1,15 @@ +-- Before we start, we need to restore the database +-- Step1: Download the compressed 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 +-- to match the directories of your installation! + +USE master; +GO +RESTORE DATABASE velibDB + FROM DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\Backup\velibDB.bak' + 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 \ No newline at end of file