Skip to content

Commit e3bcc7f

Browse files
authored
Merge pull request #7231 from HeidiSteen/heidist-ctp2-eula
db name change
2 parents fc96c60 + ee6a11a commit e3bcc7f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/advanced-analytics/tutorials/r-tutorial-create-models-per-partition.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ WITH RESULT SETS ((PackageName nvarchar(250), PackageVersion nvarchar(max) ))
7171

7272
## Connect to the database
7373

74-
Start Management Studio and connect to the database engine instance. In Object Explorer, verify the [TaxiNYC_Sample database](sqldev-download-the-sample-data.md) exists.
74+
Start Management Studio and connect to the database engine instance. In Object Explorer, verify the [NYCTaxi_Sample database](sqldev-download-the-sample-data.md) exists.
7575

7676
## Define a procedure for creating and training per-partition models
7777

@@ -83,7 +83,7 @@ When creating the stored procedure, [use parallelism](#parallel) for faster time
8383

8484

8585
```sql
86-
USE TaxiNYC_Sample
86+
USE NYCTaxi_Sample
8787
GO
8888

8989
CREATE OR ALTER procedure [dbo].[train_rxLogIt_per_partition] (
@@ -186,7 +186,7 @@ You can use the same parameters for scoring. The following sample contains an R
186186
As before, create a stored procedure to wrap your R code.
187187

188188
```sql
189-
USE TaxiNYC_Sample
189+
USE NYCTaxi_Sample
190190
GO
191191

192192
-- Stored procedure that scores per partition.

docs/advanced-analytics/tutorials/sqldev-download-the-sample-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ manager: cgronlun
1515

1616
This article prepares your system for tutorials on how to use R and Python for in-database analytics in SQL Server.
1717

18-
In this exercise, you will download sample data, a PowerShell script for preparing the environment, and [!INCLUDE[tsql](../../includes/tsql-md.md)] script files used in several tutorials. When you are finished, an **TaxiNYC_Sample** database is available on your local instance, providing demo data for hands-on learning.
18+
In this exercise, you will download sample data, a PowerShell script for preparing the environment, and [!INCLUDE[tsql](../../includes/tsql-md.md)] script files used in several tutorials. When you are finished, an **NYCTaxi_Sample** database is available on your local instance, providing demo data for hands-on learning.
1919

2020
## Prerequisites
2121

0 commit comments

Comments
 (0)