Stored Procedures [dbo].[XLedgerMarkSyncUpToDate]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@syncHistoryIdint4
@upToDateAsOfdatetimeoffset10
Permissions
TypeActionOwning Principal
GrantExecuteMssExec
SQL Script
CREATE PROCEDURE [dbo].[XLedgerMarkSyncUpToDate]
    @syncHistoryId int,
    @upToDateAsOf datetimeoffset
as
begin
set nocount on

    update XLedgerSyncHistory set UpToDateAsOf = @upToDateAsOf
    from XLedgerSyncHistory
    where XLedgerSyncHistory.XLedgerSyncHistoryId = @syncHistoryId


end
GO
GRANT EXECUTE ON  [dbo].[XLedgerMarkSyncUpToDate] TO [MssExec]
GO
Uses