Hi all
I'm trying to import some data into Sql Server 2005 from Oracle 10g, using a Sql Command which has the (+) outer join syntax as below
and also various standard Oracle functions like to_char, nvl, and decode.
SSIS has trouble parsing the query, stumbling on each of those functions and the (+) syntax.
We're getting around this now, but my question is:
Is only ANSI syntax "allowed" in these OLEDB Sources?
Many thanks
~LFCfan
I'm trying to import some data into Sql Server 2005 from Oracle 10g, using a Sql Command which has the (+) outer join syntax as below
Code:
from s, c, d, o
where s.KEYVAL = c.MDKEYVAL
and s.SRCLOSEACT = d.CODEVALUE(+)
and d.LISTNAME(+) = 'SRCLOSEACT'
and also various standard Oracle functions like to_char, nvl, and decode.
SSIS has trouble parsing the query, stumbling on each of those functions and the (+) syntax.
We're getting around this now, but my question is:
Is only ANSI syntax "allowed" in these OLEDB Sources?
Many thanks
~LFCfan