Kötü performans gösteren bir saklı yordamın bitlerini ve parçalarını gideriyorum. Prosedürün bu bölümü NO JOIN PREDICATE uyarısı veriyor
select
method =
case methoddescription
when 'blah' then 'Ethylene Oxide'
when NULL then 'N/A'
else methoddescription
end,
testmethod =
case methoddescription
when 'blah' then 'Biological Indicators'
when NULL then 'N/A'
else 'Dosimeter Reports'
end,
result =
case when l.res is null or l.res <> 1 then 'Failed'
else 'Passed'
end,
datecomplete = COALESCE(CONVERT(varchar(10), NULL, 101),'N/A')
from db2.dbo.view ls
join db1.dbo.table l
on ls.id = l.id
where item = '19003'
and l.id = '732820'
View ( [ls]
) uzak bir sunucuyu çağırır (planın sağındaki% 41 uzak sorgusu).
Planın bir görüntüsü:
Ben sadece bu blog yazısı nedeniyle bu soruyu soruyorum ve bunun daha sonra beni ısırmaya gelmeyeceğinden emin olmak istiyorum.