Skip to content

Commit d1a5acd

Browse files
authored
Acrolinx feedback
1 parent 43d117f commit d1a5acd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/synapse-analytics/sql-data-warehouse/quickstart-bulk-load-copy-tsql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ In this quickstart, you'll bulk load data into your SQL pool using the simple an
2929

3030
## Prerequisites
3131

32-
This quickstart assumes you already have a SQL pool. If a SQL pool has not been created, use the [Create and Connect - portal](create-data-warehouse-portal.md) quickstart.
32+
This quickstart assumes you already have a SQL pool. If a SQL pool hasn't been created, use the [Create and Connect - portal](create-data-warehouse-portal.md) quickstart.
3333

3434
## Create the target table
3535

36-
In this example, we will be loading data from the New York taxi dataset. We will be loading a table called Trip which represents taxi trips taken within a single year. Run the following to create the table:
36+
In this example, we'll be loading data from the New York taxi dataset. we'll load a table called Trip that represents taxi trips taken within a single year. Run the following to create the table:
3737

3838
```sql
3939
CREATE TABLE [dbo].[Trip]
@@ -71,7 +71,7 @@ WITH
7171

7272
## Run the COPY statement
7373

74-
Run the following COPY statement which will load data from the Azure blob storage account into the Trip table.
74+
Run the following COPY statement that will load data from the Azure blob storage account into the Trip table.
7575

7676
```sql
7777
COPY INTO [dbo].[Trip] FROM 'https://nytaxiblob.blob.core.windows.net/2013/Trip2013/'

0 commit comments

Comments
 (0)