Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Reasonable join clause generates Error 303

Author  Topic 

wal99005
Starting Member

2 Posts

Posted - 2001-09-27 : 19:08:57

This query generates error #303. I've simplified my select clause for readability. This can't be too hard and certainly not unreasonable.

select *
from report r, reportmni rmni, casemni cmni, mni,
reportmli rmli, casemli cmli1, mli, incident i,
mli mli2, casemli cmli2
where rmni.reportid = r.reportid
and cmni.casemniid = rmni.casemniid
and mni.mniid = cmni.mniid
and rmli.reportid = r.reportid
and cmli1.casemliid = rmli.casemliid
and mli.mliid = cmli1.mliid
and i.reportid = r.reportid
and cmli2.casemliid =* cmni.homecasemliid
and mli2.mliid = cmli2.mliid

I've also tried generating the "proper" from clause, but the result set is as though no outer join exists. Any ideas any one?
   

- Advertisement -