C
Cam808
How do you get the information out of a local table to incorperate it into a
pass-thru query. Here is my example (simplified)
One local table (A) with one value called DWE
A table on Oracle (B) with many fields one of which is DWE
the SQL needs to look like
select * from DB.B where DWE in ('','','','')
the ('','','','') should have the DWE values in the A table. I see that a
join would work so if that is a possiblity I would be willing to use that as
well. The only problem with the join that I have created is that it pulls
all of table B over the network and process the request locally which ends up
taking about 20 to 30 minutes. If don right it would take 5 to 10 seconds.
Thanks,
Cam
pass-thru query. Here is my example (simplified)
One local table (A) with one value called DWE
A table on Oracle (B) with many fields one of which is DWE
the SQL needs to look like
select * from DB.B where DWE in ('','','','')
the ('','','','') should have the DWE values in the A table. I see that a
join would work so if that is a possiblity I would be willing to use that as
well. The only problem with the join that I have created is that it pulls
all of table B over the network and process the request locally which ends up
taking about 20 to 30 minutes. If don right it would take 5 to 10 seconds.
Thanks,
Cam