cancel
Showing results for 
Search instead for 
Did you mean: 

Outer joins are currently disabled

Former Member
6,336

I have similar code as below, in a procedure. The code works fine in the older versions of Sybase, but in the newer versions, I get the error message 'Transact-SQL outer joins are currently disabled.'

SELECT  table1.a,
        table1.b,

        table2.x,
        table2.y,

FROM    table1,
        table2

WHERE ( table1.a *= table2.a )

Accepted Solutions (1)

Accepted Solutions (1)

Former Member

You can re-enable T-SQL outer join support by changing the TSQL_OUTER_JOINS option to ON. See the help. You may also want to read this white paper on the Semantics and Compatibility of TSQL Outer Joins.

Answers (0)