Not using Nav code. But you can use SQL to compare timestamp of investigating record and Change Log.
declare @t bigint
select @t=cast(timestamp) as bigint from table
select top 100 * from [company$Change Log Entry] where cast(timestamp as bigint)>=@t
order by cast(timestamp as bigint)
Not using Nav code. But you can use SQL to compare timestamp of investigating record and Change Log.
declare @t bigint
select @t=cast(timestamp) as bigint from table
select top 100 * from [company$Change Log Entry] where cast(timestamp as bigint)>=@t
order by cast(timestamp as bigint)
Answers
Nav, T-SQL.