I have a set of queries in Oracle which I need to run on a AWS redshift database.
My queries look like -
select tab1.col1, tab2.col2, tab3.col3...
From tab1,tab2,tab3
where tab1.col1=tab2.col1(+)
AND tab1.col1=tab3.col1(+)...
The queries are really big 700-900 lines and uses some oracle functions like TRUNC, XMLAGG, DECODE etc..
Which is the easiest way to convert these oracle queries to run on redshift ?
Thanks, Yatrik