DanWallace
Registered User.
- Local time
- Today, 11:35
- Joined
- Dec 5, 2008
- Messages
- 40
I have the following query:
And every time I run it, the progress bar hits about 75% or so and then just stops. I've left it for upwards of 30 minutes to no avail.
npap001 has about 10,000 records and nbif951 has about 700,000 records. They are both linked tables from another access database.
I tried using the query wizard to make an "unmatched" query and that query does the same thing.
I'm confused. Could my tables be corrupt? I can open both tables and go to the last record.
Code:
SELECT NPAP001.C_CUSTOMER, NPAP001.C_ACCOUNT, NPAP001.C_PLANTYPE
FROM NPAP001 LEFT JOIN NBIF951 ON NPAP001.[C_PLANTYPE] = NBIF951.[C_PLANTYPE]
WHERE (((NPAP001.C_PLANTYPE) Is Not Null And Not (NPAP001.C_PLANTYPE)=" ") AND ((NBIF951.C_PLANTYPE) Is Null));
npap001 has about 10,000 records and nbif951 has about 700,000 records. They are both linked tables from another access database.
I tried using the query wizard to make an "unmatched" query and that query does the same thing.
I'm confused. Could my tables be corrupt? I can open both tables and go to the last record.
Last edited: