↧
Answer by Martin Smith for Should I be alarmed by this NO JOIN PREDICATE...
Because we know that l.id = '732820' and ls.id = l.id then SQL Server derives that ls.id = '732820'i.e.FROM db2.dbo.VIEW ls JOIN db1.dbo.table l ON ls.id = l.idWHERE l.id = '732820'is the same as (...
View ArticleShould I be alarmed by this NO JOIN PREDICATE warning?
I'm troubleshooting the bits and pieces of a poorly-performing stored procedure. This section of the procedure is throwing a NO JOIN PREDICATE warningselect method = case methoddescription when 'blah'...
View Article