I am populating a table in a local database (localdb, SQL Server) with data pulled from a remote database (remotedb, Oracle).
The remote database is across the internets, and of course, local database is local to my db server.
I need to pull data from remotedb, and in order to pull the data from remotedb, I need to only pull data from specific key values (e.g. the user_id field on a table on remotedb).
The set of keys is large, approx. 10,000.
Oh, by the way, remotedb is read-only access, and I don't have access to things like imp/exp or batch or access to the server (it is with an outside vendor).
Currently, I am using a query like this:
SELECT
<my data>
FROM
<remotedb>.<remote_table> join <remotedb>.<remote_table> ...
WHERE
<remotedb>.<remote_table>.<remote_field> in
( <select that returns my 20,000 IDs> )
This seems like a brute force solution to me, but I can't think of any other way to do it.
Has anyone out there solved this problem?