spTransactions_MarkProfileUpdateAsProcessed
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ProfileUpdateTransactionsID | int | IN |
Definition
Copy
CREATE PROCEDURE dbo.spTransactions_MarkProfileUpdateAsProcessed
(
@ProfileUpdateTransactionsID int
)
AS
UPDATE [ProfileUpdateTransactions] SET processed_date = getutcdate()
WHERE ProfileUpdateTransactionsID = @ProfileUpdateTransactionsID