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

problem with append query to external table 1

Status
Not open for further replies.

vpellerito

Technical User
Sep 12, 2006
30
US
Hi folks. I can't seem to figure out what is wrong with my append query. I probably don't have the proper syntax by I don't know what that would be for Access.
Here is the query:

Code:
INSERT INTO dt_Field_Parameter IN 'J:\Proj\DB\MODCRCH.mdb' ([Table_Name], [sys_code], [measurement_date], [measurement_time],[param_code], [param_value], [param_unit]) 
VALUES ("1","test",#10/20/76#,"13:13","pH",7,"std units");
Thanks for your help.
Vince
 
Code:
INSERT INTO [red][;Database="J:\Proj\DB\MODCRCH.mdb"].dt_Field_Parameter[/red]  ([Table_Name], [sys_code], [measurement_date], [measurement_time],[param_code], [param_value], [param_unit]) 
VALUES ('1','test',#10/20/76#,'13:13','pH',7,'std units');
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top