Here is a query -
select maclin,mamatn,caname,madesc,madtop,malstd,mastat,ISNULL(sum(tlchgv),0.00) as WIP,
(select isnull(sum(blcost),0.00) from blfile where blclin = maclin and blmatn = mamatn)
as billed,
isnull(rfhghq,0.00),isnull(rffixq,0.00),ISNULL(rfdate,'17770101'),cmidst
from mafile,cafile,tlfile,rffile,cmfile where maclin=caclin and maclin*=tlclin
and mamatn*=tlmatn and
maclin*=rfclin and mamatn*=rfmatn and maclin=cmclin and tlstat='' and
maeact = 32 and maspca = 0
group by maclin,mamatn,caname,madesc,madtop,malstd,mastat,rfhghq,rffixq,rfdate,cmidst
order by caname,maclin,mamatn
If I run on SQL Server management Studio, the query runs in 1 second and returns 5190 rows.
When I run the exact same query from a Visual Foxpro Program on the windows XP PC desktop via ODBC, the query returns no errors but no rows!
If I add select top 5000 to the query, it works but takes 5 minutes. If I raise to select top 5200, it retunrs nothing again.
Using the same Visual Foxpro Program with SQL 2000, it works fine.
Most bizarre. Has anyone any ideas as to what may be the problem?
*=syntax? Have you looked to see (e.g. via Profiler) if FoxPro is somehow mangling the query before submitting it to SQL Server? Is it possible some of your tables are not in thedboschema (or that the FoxPro user has a different default schema) and you're actually looking at different tables in each case? Or maybe you are connected to different versions of the database or different instances of SQL Server? – Aaron Bertrand Feb 20 at 15:52