Skip to content

Commit 74cdc27

Browse files
authored
Update create-use-views.md
1 parent bfaba4d commit 74cdc27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ The views can be created on top of the Azure Cosmos DB containers if the Azure C
153153

154154
This example script uses a database and container you can set up by [following these instructions](query-cosmos-db-analytical-store.md#sample-dataset).
155155

156-
>[IMPORTANT]
156+
>[!IMPORTANT]
157157
>In the script, replace these values with your own values:
158158
>- **your-cosmosdb** - the name of your Cosmos DB account
159159
>- **access-key** - your Cosmos DB account key
@@ -166,7 +166,7 @@ CREATE OR ALTER VIEW Ecdc
166166
AS SELECT *
167167
FROM OPENROWSET(
168168
PROVIDER = 'CosmosDB',
169-
CONNECTION = 'Account=<your-cosmosdb>;Database=covid',
169+
CONNECTION = 'Account=your-cosmosdb;Database=covid',
170170
OBJECT = 'Ecdc',
171171
CREDENTIAL = 'MyCosmosDbAccountCredential'
172172
) with ( date_rep varchar(20), cases bigint, geo_id varchar(6) ) as rows

0 commit comments

Comments
 (0)