Skip to content

Commit cb37111

Browse files
committed
Removed useless quoted identifier on
1 parent 20a3393 commit cb37111

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

samples/databases/wide-world-importers/wwi-ssdt/wwi-ssdt/WebApi/Stored Procedures/UpdateCustomerTransactionFromJson.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
CREATE PROCEDURE [WebApi].[UpdateCustomerTransactionFromJson](@CustomerTransaction NVARCHAR(MAX), @CustomerTransactionID int, @UserID int)
22
WITH EXECUTE AS OWNER
33
AS BEGIN
4-
SET QUOTED_IDENTIFIER ON;
54
UPDATE Sales.CustomerTransactions SET
65
TransactionTypeID = ISNULL(json.TransactionTypeID, Sales.CustomerTransactions.TransactionTypeID),
76
PaymentMethodID = json.PaymentMethodID,

samples/databases/wide-world-importers/wwi-ssdt/wwi-ssdt/WebApi/Stored Procedures/UpdateSupplierTransactionFromJson.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
CREATE PROCEDURE [WebApi].[UpdateSupplierTransactionFromJson](@SupplierTransaction NVARCHAR(MAX), @SupplierTransactionID int, @UserID int)
22
WITH EXECUTE AS OWNER
33
AS BEGIN
4-
SET QUOTED_IDENTIFIER ON;
54
UPDATE Purchasing.SupplierTransactions SET
65
SupplierID = ISNULL(json.SupplierID,Purchasing.SupplierTransactions.SupplierID),
76
TransactionTypeID = ISNULL(json.TransactionTypeID,Purchasing.SupplierTransactions.TransactionTypeID),

0 commit comments

Comments
 (0)