Not that it's the best solution but you can accomplish a full outer join by not linking the tables in the crystal editor...
I'd consider creating your own sql with a subquery. Something along these lines:
select a.*
from 2008table a
union
select b.*
from 2009table b
where b.employeeid not in (
select employeeid from 2008table
)
Main Topics
Browse All Topics





by: reb73Posted on 2009-02-27 at 14:54:52ID: 23760366
Can you post the code you have along with sample data from the 2008/2009 tables..