stukanewss
MIS
I have the following passthrough:
SELECT
S_EVT_ACT."ROW_ID",
S_EVT_ACT."SRC_ID",
01BaseSRC_ID.SamplingSourceCode,
FROM
"SIEBEL"."S_EVT_ACT" S_EVT_ACT,
01BaseSRC_ID
WHERE
S_EVT_ACT."SRC_ID" = 01BaseSRC_ID."ROW_ID"
The data from s_evt_act is on an Oracle server. The data from 01BaseSRC_ID is a local table on my access db.
I have tried every syntax iteration I can think of but I can not get the query to work. Is it even possible to link data from an ODBC source with a local table in a passthrough query?
Thanks!
SELECT
S_EVT_ACT."ROW_ID",
S_EVT_ACT."SRC_ID",
01BaseSRC_ID.SamplingSourceCode,
FROM
"SIEBEL"."S_EVT_ACT" S_EVT_ACT,
01BaseSRC_ID
WHERE
S_EVT_ACT."SRC_ID" = 01BaseSRC_ID."ROW_ID"
The data from s_evt_act is on an Oracle server. The data from 01BaseSRC_ID is a local table on my access db.
I have tried every syntax iteration I can think of but I can not get the query to work. Is it even possible to link data from an ODBC source with a local table in a passthrough query?
Thanks!