If anyone can explain what’s going on here, I’d be really grateful as it’s driving me mad
I’ve got a number of Access databases in VSS, the databases have ODBC linked Oracle tables in.
I use some UNION queries to provide data for combo boxes, e.g. using the SQL
SELECT UNIFORM_CNCODE.CODEVALUE, UNIFORM_CNCODE.CODETEXT FROM UNIFORM_CNCODE WHERE UNIFORM_CNCODE.LISTNAME="ADRECTYPE" UNION SELECT "^" AS AllChoice , "(Not Set)" AS Bogus FROM UNIFORM_CNCODE UNION SELECT "*" AS AllChoice , "(All)" AS Bogus FROM UNIFORM_CNCODE ORDER BY UNIFORM_CNCODE.CODEVALUE;
which has worked in most mdb’s, but I’ve now found a couple of mdb’s where opening the query crashes Access – that’s a full crash, send report to Microsoft, and then die
What even more weird is if I reverse the two dummey select’s, the query works
I’ve even created a blank database, linked the Oracle UNIFORM_CNCODE table and copied the SQL text into a new query. Open it and CRASH
– can something be in the text, I even copied it out to Notepad, and then back in