Hi Access forum peeps, i need your help.
I'm trying to pull records I need from the SQL Server that I have pulled into a DAO.Recordset and save them to the local MS Access Table (Either via append or make table). Any help with this is most appreciated. I have been working on this issue for 2 weeks now:banghead:
here is what i have so far:
I'm trying to pull records I need from the SQL Server that I have pulled into a DAO.Recordset and save them to the local MS Access Table (Either via append or make table). Any help with this is most appreciated. I have been working on this issue for 2 weeks now:banghead:
here is what i have so far:
Code:
Dim MakeAdjTbl As String
Dim dbSQL As DAO.Database
Dim rsMakeT As DAO.Recordset
Set dbSQL = OpenDatabase("", False, False, "Driver={SQL Server Native Client 11.0};Server=L563931F034C53\ICQADB;Database=QA;Trusted_Connection=yes;")
MakeAdjTbl = "SELECT * FROM TBL_ADJ;"
Set rsMakeT = dbSQL.OpenRecordset(MakeAdjTbl, dbOpenDynaset, dbSeeChanges)
‘ Need code to append or make table to local access database table “tblAdjAllDates”