Skip to content

Commit 9e1defd

Browse files
committed
Merge remote-tracking branch 'refs/remotes/Microsoft/master'
2 parents 4e592c6 + 72558a1 commit 9e1defd

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

samples/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
# Sample Categories
22

3-
__[applications] (applications/)__
3+
__[applications](applications/)__
44

55
End-to-end sample applications that illustrate the use of SQL Server for specific application scenarios.
66

7-
__[databases] (databases/)__
7+
__[databases](databases/)__
88

99
Sample databases for SQL Server, Azure SQL Database, and Azure SQL Data Warehouse.
1010

11-
__[demos] (demos/)__
11+
__[demos](demos/)__
1212

1313
Demos of various SQL features and capabilities that were presented at conferences, in Webcasts, etc...
1414

15-
__[features] (features/)__
15+
__[features](features/)__
1616

1717
Samples illustrating specific SQL Server and Azure SQL Database features, including In-Memory OLTP, Master Data Services (MDS), and R Services.
1818

19-
__[management] (manage/)__
19+
__[management](manage/)__
2020

2121
Samples that help with the management of SQL Server and Azure SQL Database.
2222

23-
__[tutorials] (tutorials/)__
23+
__[tutorials](tutorials/)__
2424

2525
Samples showing how to connect to SQL databases using various programming languages, including Python, C#, Java, Ruby, Node.js, and PHP.

samples/features/machine-learning-services/python/getting-started/rental-prediction/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this sample, you will learn how to create a predictive model in python and op
2323

2424
<!-- Delete the ones that don't apply -->
2525
- **Applies to:** SQL Server 2017 CTP2.0 or higher
26-
- **Key features:**SQL Server Machine Learning Services
26+
- **Key features:** SQL Server Machine Learning Services
2727
- **Workload:** SQL Server Machine Learning Services
2828
- **Programming Language:** T-SQL, Python
2929
- **Authors:** Nellie Gustafsson
@@ -34,17 +34,17 @@ In this sample, you will learn how to create a predictive model in python and op
3434
## Before you begin
3535

3636
To run this sample, you need the following prerequisites: </br>
37-
Download a DB backup file and restore it using Setup.sql. [Download DB](https://deve2e.azureedge.net/sqlchoice/static/TutorialDB.bak)
37+
[Download this DB backup file](https://deve2e.azureedge.net/sqlchoice/static/TutorialDB.bak) and restore it using Setup.sql.
3838

3939
**Software prerequisites:**
4040

4141
<!-- Examples -->
42-
1. SQL Server 2017 CTP2.0 (or higher) with Machine Learning Services (Python) installed
43-
2. SQL Server Management Studio
44-
3. Python Tools for Visual Studio or another Python IDE
42+
1. [SQL Server 2017 CTP2.0](https://www.microsoft.com/en-us/sql-server/sql-server-2017) (or higher) with Machine Learning Services (Python) installed
43+
2. [SQL Server Management Studio](https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms)
44+
3. [Python Tools for Visual Studio](https://www.visualstudio.com/vs/python/) or another Python IDE
4545

4646
## Run this sample
47-
1. From SQL Server Management Studio or SQL Server Data Tools connect to your SQL Server vNext database and execute setup.sql to restore the sample DB you have downloaded </br>
47+
1. From SQL Server Management Studio, or SQL Server Data Tools, connect to your SQL Server 2017 database and execute setup.sql to restore the sample DB you have downloaded </br>
4848
2. From SQL Server Management Studio or SQL Server Data Tools, open the rental_prediction.sql script </br>
4949
This script sets up: </br>
5050
Necessary tables </br>

samples/features/machine-learning-services/python/getting-started/rental-prediction/Setup.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
USE master;
77
GO
88
RESTORE DATABASE TutorialDB
9-
FROM DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\Backup\TutorialDB.bak'
9+
FROM DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\Backup\TutorialDB.bak'
1010
WITH
11-
MOVE 'TutorialDB' TO 'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\DATA\TutorialDB.mdf'
12-
,MOVE 'TutorialDB_log' TO 'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\DATA\TutorialDB.ldf';
13-
GO
11+
MOVE 'TutorialDB' TO 'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\DATA\TutorialDB.mdf'
12+
,MOVE 'TutorialDB_log' TO 'C:\Program Files\Microsoft SQL Server\MSSQL14.MSSQLSERVER\MSSQL\DATA\TutorialDB.ldf';
13+
GO

0 commit comments

Comments
 (0)