Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm ready to chalk this up to the catch-all "Access is weird" I end up deferring to pretty frequently. I'm troubleshooting an issue with some legacy software (using .accdb format Access file) with the following query:

SELECT *
FROM [TestCopy] N
WHERE (C_LNAME = (SELECT LNAME FROM [TestCopy] X WHERE ID=N.ID-2)
    OR LNAME = (SELECT C_LNAME FROM [TestCopy] X WHERE ID=N.ID+2))

This query causes Access to hang (I'm running it directly in the SQL Query within Access.) I've let it sit for an hour or so before and it doesn't finish running. However, if I use a UNION to the exact same query, it runs in a few seconds:

(
    SELECT *
    FROM [TestCopy] N
    WHERE (C_LNAME = (SELECT LNAME FROM [TestCopy] X WHERE ID=N.ID-2)
        OR LNAME = (SELECT C_LNAME FROM [TestCopy] X WHERE ID=N.ID+2))
)
UNION
(
    SELECT *
    FROM [TestCopy] N
    WHERE (C_LNAME = (SELECT LNAME FROM [TestCopy] X WHERE ID=N.ID-2)
        OR LNAME = (SELECT C_LNAME FROM [TestCopy] X WHERE ID=N.ID+2))
)

LNAME and C_LNAME are text fields. ID is an AutoNumber/int field. I have tried running with joins comparable to the WHERE clauses, but those won't run at all with or without the union.

What might explain this behavior?

share|improve this question
1  
That your AutoNumber IDs are meaningful ( =N.ID+2 ) makes me think something weird is going on here beyond "Access is weird". – Tim Mar 6 at 15:59
Definitely, it's an awful legacy system that divvies up processing by even/odd IDs. I was mostly curious about why Access will not run the query on its own. – John Straka Mar 6 at 16:13
How many rows are in TestCopy? – Tim Mar 6 at 16:48
Is this a local MDB or is the data on a server? – Tim Mar 6 at 16:49
1  
Trying to figure out what you're attempting, really, with the nested subqueries. I'd turn your query into one that joins the table to itself, without joining on anything, but with the criteria about the plus/minus 2 in the where clause. Can you explain a bit more about what the goal of the query is, and perhaps it's resolvable? – David T. Macknet Mar 6 at 17:06
show 3 more comments

migrated from dba.stackexchange.com Mar 6 at 15:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.