Hi Guys.
Really Mega stumped on this one.
I can download a table line by line after using a connection string:
Set oConn123 = New ADODB.Connection
oConn123.Open “Driver={SQL Server};” & _
“Server=;” & _
“Address=;” & _
“Network=;” & _
“Database=;” & _
“Uid=;” & _
“Pwd=;”
And calling it via:
Set rs123 = New ADODB.Recordset
rs123.Open “Select * From DB_1”, oConn123
And then:
Do
‘ Extracting individual fields and then appending the line.
Loop While rs123.EOF = False
Which takes long time.
Is it better/Quicker to download the whole table creating a new table in Access 2007, If so:
Hows it done, I am assuming its an SQL string, But I cant seem to get the Downloaded Table to apply itself to the Access table (CurrentDB.) where the active code is.
Be really grateful if there’s any illumination out there.
Graeme