Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I would like to use a TimeStamp col 1

Status
Not open for further replies.

GerryGoldberg

Technical User
Apr 12, 2001
55
I would like to use a TimeStamp column in an SQL-7 database and be able to read it's value with an access program. I have defined the table in SQL and, once connected to A97, this field appears as 'binary' of length 8. How can I convert this field to a value that I can manipulate?
Thank,

Gerry Goldberg
 
Timestamp columns are not for manipulation. They are not really timestamps as we normally think of timestamps. That is the column doesn't contain the date and time of last update although it is updated every time the row is updated. SQL does use timestamp columns to identify updated rows. You may want to use another type column if you need to manipulate or view the data. Terry
 
I don't need to manipulate the timestamp values but simply use them in a selection process to update some other tables. It seems that I can extract new or modified data records from my SQL tables by structuring a query that compares each record's timestamp value against a base timestamp value (e.g. date of last update) that is contained in another table. Thanks for your help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top