
Query Left Join Causes Access to crash only in Windows 2000
A query with a left join was created and used successfully in NT without ant
problem, but when used on a Windows 2000 machine the query causes access to
crash.
A: Converted the 2000 operating system to resemble an NT box
B: Ran SFC
Problem still persists, any suggestions.
==========================
SELECT DISTINCTROW Customers.[Customer Name], Customer_Contacts.Contact,
Customer_Contacts_Selected.templ_select, Customer_Contacts.E_mail
FROM Customers INNER JOIN (Customer_Contacts LEFT JOIN
Customer_Contacts_Selected ON Customer_Contacts.ID =
Customer_Contacts_Selected.ID) ON Customers.Counter =
Customer_Contacts.CustID
WHERE (((Customers.[Customer Name]) Is Not Null) AND
((Customer_Contacts.Contact) Is Not Null) AND ((Customer_Contacts.E_mail) Is
Not Null))
ORDER BY Customers.[Customer Name], Customer_Contacts.Contact;