Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > Other .NET > Crystal Reports
|
Crystal Reports General discussion about Crystal Reports. For discussions specific to the book Professional Crystal Reports for VS.NET, please see the book discussion forum for that book.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Crystal Reports section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 17th, 2007, 12:41 PM
Registered User
 
Join Date: Jan 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default CR XI left outer joins not working

In CR 8.5, I had a report that left outer joined 6 tables together.
5 of them reside in the same database and 1 resides in another database. I will refer to tables as A, B, C, D, and E. The query produced by 8.5 using left outer joins was:

select distinct
A.Field1 B.Field1, C.Field1, D.Field1, E.Field1
FROM
DB1@Server:owner.A A
outer DB1@Server:owner.B B
outer DB1@Server:owner.C C
outer DB1@Server:owner.D D
outer DB2@Server:owner.E E

CR XI produces an entirely different query:

select distinct
A.Field1 B.Field1
FROM
DB1@Server:owner.A A
outer DB1@Server:owner.B B

select distinct C.Field1
From C

Select distinct D.Field1
From D

Select distinct E.Field1
From E

It is only outer joining the first two tables and then seperating the rest into seperate queries. Is this a bug within Crytal XI? Does anyone have a solution?

Thanks,
Saied






Similar Threads
Thread Thread Starter Forum Replies Last Post
left outer join keyvanjan Classic ASP Basics 1 April 15th, 2006 05:37 AM
left outer join keyvanjan Classic ASP Professional 0 February 5th, 2006 11:54 AM
Left Outer Join with Crystal navinkumar1 Crystal Reports 0 October 21st, 2004 01:02 PM
Two outer joins Neil SQL Language 1 March 22nd, 2004 01:09 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.