I have this table on the SQL Server, which is updated if someone send a specific sms message to a specific number.
What i did is i entered a new table, which is a timestamp one.
Now, the issue is, when a new row is added i get this in the timestamp value:
<binary data>
Why does this happen?
What should i do?
Thanks!
If you want to record the date and time when a row was inserted use a
datetime(ordatetime2, if using SQL Server 2008 or later) column with a default constraint:timestampis a (badly named) synonym forrowversion, which has no relationship with an actual date and time: