Skip to content

Commit 87fdeea

Browse files
committed
Correct TSQL sample
1 parent 37e830f commit 87fdeea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

articles/data-factory/connector-azure-sql-database-managed-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ The following sample shows how to use a stored procedure to do an upsert into a
523523
```sql
524524
CREATE TYPE [dbo].[MarketingType] AS TABLE(
525525
[ProfileID] [varchar](256) NOT NULL,
526-
[State] [varchar](256) NOT NULL
526+
[State] [varchar](256) NOT NULL,
527527
[Category] [varchar](256) NOT NULL
528528
)
529529
```

articles/data-factory/connector-azure-sql-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ The following sample shows how to use a stored procedure to do an upsert into a
517517
```sql
518518
CREATE TYPE [dbo].[MarketingType] AS TABLE(
519519
[ProfileID] [varchar](256) NOT NULL,
520-
[State] [varchar](256) NOT NULL
520+
[State] [varchar](256) NOT NULL,
521521
[Category] [varchar](256) NOT NULL
522522
)
523523
```

articles/data-factory/connector-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ The following sample shows how to use a stored procedure to do an upsert into a
444444
```sql
445445
CREATE TYPE [dbo].[MarketingType] AS TABLE(
446446
[ProfileID] [varchar](256) NOT NULL,
447-
[State] [varchar](256) NOT NULL
447+
[State] [varchar](256) NOT NULL,
448448
[Category] [varchar](256) NOT NULL
449449
)
450450
```

0 commit comments

Comments
 (0)