How do Microsoft SQL Server outer joins compare to ODBC?
The Microsoft SQL Server outer joins are supported by the Oracle ODBC driver. The following example illustrates how the Migration Workbench migrates Microsoft SQL Server outer joins to ODBC escape sequences. The Oracle ODBC driver release 9.0.1 or later supports ODBC escape sequences. Example 4-7 Original SQL Server Statement SELECT A.A,B.B FROM A LEFT OUTER JOIN B ON A.A = B.B WHERE ((A.C=3)); Example 4-8 Oracle ODBC Statement SELECT A.A,B.B FROM {oj A LEFT OUTER JOIN B ON A.A = B.B } WHERE ((A.