Timestamp data type in SQL Server

Just looking at the timestamp data type, I realized that in SQL Server this exposes an automatically generated unique binary number (basically to help in version-stamping the rows). The timestamp data type is just an incrementing number and has nothing to do with preserving a date or a time. To actually capture a date or time, just use your good old datetime data type!