Greetings,
Does any know of a way to take a linked table, and
append all the records into a table is MS SQL Server?
I know I could attach to the table via ODBC and then
just dump the contents from the linked to the attached,
but I want to use OLEDB (since I have a LOT of data
to move, and OLEDB is faster).
I also know that MS SQL Server has the data import
wizard, but this wont work as I have hundreds of tables
to append to a master MS SQL table.
Essentially I am taking a Paradox table, linking it,
and trying to find a way to do something like...
...but the LINKED_PARADOX_TBL is only known to
MS Access (not to the SQL Server that would be
recieving the sql command.)
It would be really cool if I could just do something
like...

I also would rather not do something like...
...for every table (I know its probably possible, but
that would take entirely too long to do for every
column of every record of every table).
Tj
Does any know of a way to take a linked table, and
append all the records into a table is MS SQL Server?
I know I could attach to the table via ODBC and then
just dump the contents from the linked to the attached,
but I want to use OLEDB (since I have a LOT of data
to move, and OLEDB is faster).
I also know that MS SQL Server has the data import
wizard, but this wont work as I have hundreds of tables
to append to a master MS SQL table.
Essentially I am taking a Paradox table, linking it,
and trying to find a way to do something like...
Code:
sSQL = "INSERT INTO MS_SQL_TBL " & _
"SELECT * FROM LINKED_PARADOX_TBL"
rs.open sSQL, conObjPointingToSqlServer
MS Access (not to the SQL Server that would be
recieving the sql command.)
It would be really cool if I could just do something
like...
Code:
rsSQL.append(rsParadox)
I also would rather not do something like...
Code:
do while rsParadox.EOF = False
with rsSQL
.addnew
!col1 = rsParadox!col1
!col2 = rsParadox!col2
etc...
.update
end with
loop
that would take entirely too long to do for every
column of every record of every table).
Tj