Hi Everyone,
I have the following query containing a left join:
SELECT LGDOCA.UNIQID, Trim([NARR1]) AS ItemComments
FROM (LGDOCB INNER JOIN (LGDOCA INNER JOIN LGDOCE ON LGDOCA.UNIQID = LGDOCE.DOCID) ON LGDOCB.DOCID = LGDOCA.UNIQID) LEFT JOIN LGDOCF ON LGDOCA.UNIQID = LGDOCF.DOCID
WHERE (((LGDOCA.DOCTYPD)="PSL"));
It sits on a network PC which has the same version and service pack as my PC (access 2003 SP3). When I run the query from my PC I get the results I expect but when I run it from the network PC I get no results!!
I have run the query from a number of PCs with 2003 and 2007 and it runs no problem. I cannot get the query to run on the Network PC that hosts the database and have no idea why. If I remove the left join I get some of the results but obviously this is not what I want.
Has anyone experienced this or have any ideas how I can solve this?
Many thanks
GPM
I have the following query containing a left join:
SELECT LGDOCA.UNIQID, Trim([NARR1]) AS ItemComments
FROM (LGDOCB INNER JOIN (LGDOCA INNER JOIN LGDOCE ON LGDOCA.UNIQID = LGDOCE.DOCID) ON LGDOCB.DOCID = LGDOCA.UNIQID) LEFT JOIN LGDOCF ON LGDOCA.UNIQID = LGDOCF.DOCID
WHERE (((LGDOCA.DOCTYPD)="PSL"));
It sits on a network PC which has the same version and service pack as my PC (access 2003 SP3). When I run the query from my PC I get the results I expect but when I run it from the network PC I get no results!!
I have run the query from a number of PCs with 2003 and 2007 and it runs no problem. I cannot get the query to run on the Network PC that hosts the database and have no idea why. If I remove the left join I get some of the results but obviously this is not what I want.
Has anyone experienced this or have any ideas how I can solve this?
Many thanks
GPM