Skip to content
This repository was archived by the owner on Jun 29, 2019. It is now read-only.

Commit 7e20012

Browse files
author
xibingaomsft
committed
Add table name rules
1 parent d739956 commit 7e20012

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Misc/SQLDW/SQLDW_Data_Import.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ function ReadHostInput(){
2222
$Script:external_nyctaxi_fare = 'external_nyctaxi_fare' + '_' + $RandomNumber
2323

2424
#Specify your table names
25-
$TripTableName0 = Read-Host -Prompt 'Input the NYC Taxi Trip table name, for example nyctaxi_trip_yourname'
26-
$FareTableName0 = Read-Host -Prompt 'Input the NYC Taxi Fare table name, for example nyctaxi_fare_yourname'
27-
$SampleTableName0 = Read-Host -Prompt 'Input the NYC Taxi 1% Sample table name, for example nyctaxi_sample_yourname'
25+
$TripTableName0 = Read-Host -Prompt 'Input the NYC Taxi Trip table name, for example nyctaxi_trip_yourname (no dash(-) in table name)'
26+
$FareTableName0 = Read-Host -Prompt 'Input the NYC Taxi Fare table name, for example nyctaxi_fare_yourname (no dash(-) in table name)'
27+
$SampleTableName0 = Read-Host -Prompt 'Input the NYC Taxi 1% Sample table name, for example nyctaxi_sample_yourname (no dash(-) in table name)'
2828
$Script:TripTableName = $TripTableName0 + '_' + $RandomNumber
2929
$Script:FareTableName = $FareTableName0 + '_' + $RandomNumber
3030
$Script:SampleTableName = $SampleTableName0 + '_' + $RandomNumber

0 commit comments

Comments
 (0)