DB Access error - outer join
-
- Posts: 15
- Joined: Tue Oct 10, 2017 12:44 pm
DB Access error - outer join
I^m using R&R SQL 12.1.001____I have a simple report (no filter) that connects 3 tables together for auditing purposes. One of the connections requires an outer join. When executing this report, the following error message immediately appears.____DB Access: [Microsoft][ODBC SQL Server Driver][SQL Server]Joined tables cannot be specified in a query containing outer join operators. View or function ^dbo.vwppridplay2^ contains joined tables. [Microsoft][ODBC SQL Server Driver][SQL Server] Statement(s) could not be prepared.____this report does not use a filter/query and the tables are relatively small.____Please help.____Jonathan__
=> RE: DB Access error - outer join
If this is SQL Server, edit the file RSWSQL.INI that is in the RSW.EXE program folder and edit the line DataSourceOuterJoinStyle = 1__that is in the SQL Server section and add a semicolon so that it looks as shown below and see if this helps.____;;;;;;;;;;;;;;;;;;;;;;__;;; ;;;__;;; SQL Server ;;;__;;; ;;;__;;;;;;;;;;;;;;;;;;;;;;__[SQLServer]__DataSourceDBMS = Microsoft SQL SERVER__;DataSourceOuterJoinStyle = 1______Kathleen__R&R Support
-
- Posts: 15
- Joined: Tue Oct 10, 2017 12:44 pm
=> RE: DB Access error - outer join
That did the trick. Perfect____Thanks!!