Skip to content

Commit 8767448

Browse files
Update create-use-views.md
1 parent 424600f commit 8767448

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/synapse-analytics/sql/create-use-views.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: azaricstefan
66
ms.service: synapse-analytics
77
ms.topic: overview
88
ms.subservice:
9-
ms.date: 04/15/2020
9+
ms.date: 05/20/2020
1010
ms.author: v-stazar
1111
ms.reviewer: jrasnick, carlrab
1212
---
@@ -36,8 +36,9 @@ GO
3636
CREATE VIEW populationView AS
3737
SELECT *
3838
FROM OPENROWSET(
39-
BULK 'https://sqlondemandstorage.blob.core.windows.net/csv/population/population.csv',
40-
FORMAT = 'CSV',
39+
BULK 'csv/population/population.csv',
40+
DATA_SOURCE = 'SqlOnDemandDemo',
41+
FORMAT = 'CSV',
4142
FIELDTERMINATOR =',',
4243
ROWTERMINATOR = '\n'
4344
)
@@ -57,7 +58,7 @@ AS SELECT *, nyc.filepath(1) AS [year], nyc.filepath(2) AS [month]
5758
FROM
5859
OPENROWSET(
5960
BULK 'parquet/taxi/year=*/month=*/*.parquet',
60-
DATA_SOURCE = 'sqlondemandstorage',
61+
DATA_SOURCE = 'sqlondemanddemo',
6162
FORMAT='PARQUET'
6263
) AS nyc
6364
```

0 commit comments

Comments
 (0)