Looking at NAV table on SQL Server Management Studio there is an interesting additional field called "timestamp". It seems that it it a hexadecimal format. I tried to convert it in a decimal format, but it does not represent a date format.
How can I read it?
For instance:
timestamp: 0x000000000009D302 (643842 converting it in a decimal format, but it does not seem a date format)
How do I translate it into a date format?
0
Comments
Because timestamp increases by 1 for every modification in database, you can use a Change Log Entry table to find when record was changed last time.
Right now I'm checking when records in warehouse entry were changed
Nav, T-SQL.
Thank you. Please lt me know about it.
2. Find record with nearest timestamp in the Change Log Entry Table and look into "Date and Time" field
SQL code is below:).
Nav, T-SQL.