sgtrock40
09-19-2005, 09:05 AM
Can I import data into a table that already has data in it? I want to add this new data to the existing information.
|
View Full Version : Importing additional data sgtrock40 09-19-2005, 09:05 AM Can I import data into a table that already has data in it? I want to add this new data to the existing information. ScottGem 09-19-2005, 10:59 AM Can I import data into a table that already has data in it? I want to add this new data to the existing information. Yes this is called APPENDING data. You probably want to link the new data or import to a temp file. Then run an Append query to add the data to the existing table. sgtrock40 09-19-2005, 11:43 AM Yes, thank you. :) |