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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Timestamp 2

Status
Not open for further replies.

yorrick

Technical User
Jan 3, 2002
58
0
0
AU
Hi all,

Access FrontEnd, SQL Server 2000 backend.

I need to add a Timestamp field to a table what do I do?
In baby steps?!

Is it a case of going to SQL SERVER and adding the Field in there, because I can't see a way of doing it directly from Access?

Is this correct?

regards

Yorrick
 
Yes, do it in SQL Server and then in access refresh the link.

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
yorrick,
Be careful, the SQL-Server 'Timestamp' field is not a date/time. If a true date/time is what you want, then use the datetime data type and use getdate() as Default and use a trigger to change it on updates--avoid using Access to insert the datetime and update it--each client may have vastly different system times.

The Timestamp datatype is a value which you can use to tell the relative 'age' of a record, it but has nothing to do with clock time.
--Jim
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top