Hi I’m new to Toad using Toad Data Point 3.8.1.677 Base Edition. I have created a cross connection query using one MS Access 2010 table and three DB2 tables. When I make them all inner joins my query works fine. When I switch one join (between Access and one DB2 table) to a left join, I get an error “[Microsoft][ODBC Microsoft Access Drive] JOIN expression not supported”.
In the interest of full disclosure, the join uses a substring of the DB2 field per snippet below (real DB names masked). However this join works fine when it is an inner join, so that doesn't appear to be the issue.
MyDB2Database.TB_DIM_PRD_PKG DPP
LEFT JOIN MyAccessDatabase.tbDIM_ExtHP_Market_Segment DIM
on RIGHT(DPP.PKG_NM,5) = DIM.BPL
Does my version of Toad support this type of join? I don’t want to waste more time tweaking syntax if it is simply not supported. Thanks for any comments ;)