my stored procedure (from SQL server) includes a left outer join. results show in SQL management studio as NULL values, but my report is not pulling this data because i have a multi-value parameter that does not allow null values...... can someone help?
example:
select c.custid, s.department from calllog c
left outer join subset s
on c.custid = s.custid
i want to return the customer even if they have no department valued on the subset table.