[dbo].[XLedgerMarkSyncUpToDate]
BUILD09
>
MoversSuite2
>
Stored Procedures
> dbo.XLedgerMarkSyncUpToDate
Properties
Parameters
Permissions
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@syncHistoryId
int
4
@upToDateAsOf
datetimeoffset
10
Permissions
Type
Action
Owning Principal
Grant
Execute
MssExec
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
[dbo].[XLedgerSyncHistory]
dbo