I have this Access DB that has records(recs in thousands) in tables from Day1 to Day60 on machine1.
Had taken a backup of this on Machine2 on Day30. Machine1 is unusable after Day60 (it crashed,but the data was recovered on CD)
Then started using machine2 which has DB data from Day1-Day30 and Day60-tilldate.
The DB is same & tables are same with same format.
Now how do I consolidate the data? I mean Machine2 has Day30-60 missing. The CD has only till Day60. Thought maybe Import data from Table option with Append would do it...but I guess thats not there.
I tried running Append query like:
INSERT INTO [T1] (FIELD1,FIELD2) IN 'ABC.mdb'
SELECT [T1].FIELD1 , [T1].FIELD2
FROM [T1]
WHERE ((([T1].FIELD1) <> FIELD1 ));
This doesnt work. Am trying to add all extra recs from current db to abc.mdb....basically dont know how to refer to field1 of the t1 in abc.mdb in last line. Thats wots wrong I think.
Can someone please correct this or suggest something else. It would be of great help. Please HELP!!!
Had taken a backup of this on Machine2 on Day30. Machine1 is unusable after Day60 (it crashed,but the data was recovered on CD)
Then started using machine2 which has DB data from Day1-Day30 and Day60-tilldate.
The DB is same & tables are same with same format.
Now how do I consolidate the data? I mean Machine2 has Day30-60 missing. The CD has only till Day60. Thought maybe Import data from Table option with Append would do it...but I guess thats not there.
I tried running Append query like:
INSERT INTO [T1] (FIELD1,FIELD2) IN 'ABC.mdb'
SELECT [T1].FIELD1 , [T1].FIELD2
FROM [T1]
WHERE ((([T1].FIELD1) <> FIELD1 ));
This doesnt work. Am trying to add all extra recs from current db to abc.mdb....basically dont know how to refer to field1 of the t1 in abc.mdb in last line. Thats wots wrong I think.
Can someone please correct this or suggest something else. It would be of great help. Please HELP!!!