How do I get full outer join
in TimesTen DB?
I tried this:
select t1.column1, t2.column2
from table1 t1
full outer join table2 t2 on t1.column1 = t2.column2;
This works in Oracle but when I run it against TimesTen it throws an error, that there is problem before "full".