just a note...dont expect to see an actaul timestampl such as 1-1-2004 10:23. From the books on line
_The Transact-SQL timestamp data type is not the same as the timestamp data type defined in the SQL-92 standard. The SQL-92 timestamp data type is equivalent to the Transact-SQL datetime data type.
A future release of Microsoft® SQL Server™ may modify the behavior of the Transact-SQL timestamp data type to align it with the behavior defined in the standard. At that time, the current timestamp data type will be replaced with a rowversion data type.
Microsoft® SQL Server™ 2000 introduces a rowversion synonym for the timestamp data type. Use rowversion instead of timestamp wherever possible in DDL statements. rowversion is subject to the behaviors of data type synonyms.
_
I usually create 2 extra columns on my tables inserttimestampGMT with a default of getdate() and an updatetimestmpGMT that my application will update. I find this info much more valuable. I had been thinking of trying to figure out a way for LLBLGen to update the UpdateTimestampGMT whenever an update was issued..just havent had a chance to look into it yet