I assume the fight that Access 2007 is giving me is related to Access not recognizing what CURRENT_TIMESTAMP is.
I have the following code which works in SQL Server Management Studio:
When I try to run the same from an Access query, I get a popup prompt to provide CURRENT_TIMESTAMP.
I was hoping to simply capture the current server timestamp for logging and not rely on workstations having the correct date/time.
Suggestions on how to get CURRENT_TIMESTAMP to work from Access?
My connection to SQL Server is via the ODBC driver. I have the SQL Server Management Studio installed as well on my workstation, thus comparing results.
Thanks!
I have the following code which works in SQL Server Management Studio:
Code:
INSERT INTO projects ( authid, logtimestamp, title )
VALUES (4, CURRENT_TIMESTAMP, 'This is a way cool test!');
I was hoping to simply capture the current server timestamp for logging and not rely on workstations having the correct date/time.
Suggestions on how to get CURRENT_TIMESTAMP to work from Access?
My connection to SQL Server is via the ODBC driver. I have the SQL Server Management Studio installed as well on my workstation, thus comparing results.
Thanks!