I am running what would seem to me as a relatively simple query. But Access hangs up (showing two-squares on the progress bar) and sits there. I have left it all night. No change. Here is the SQL:
SELECT RHMF.ID_1, MEMBER.ID_2 INTO RHMF_Out
FROM RHMF LEFT JOIN MEMBER ON trim(RHMF.ID_1) = trim(MEMBER.ID_1);
RHMF table has 125,000 records
MEMBER table has 250,000 records
Is the 'trim' causing heavy overhead?
Any advice would be greatly appreciated. Thanks in advance.
SELECT RHMF.ID_1, MEMBER.ID_2 INTO RHMF_Out
FROM RHMF LEFT JOIN MEMBER ON trim(RHMF.ID_1) = trim(MEMBER.ID_1);
RHMF table has 125,000 records
MEMBER table has 250,000 records
Is the 'trim' causing heavy overhead?
Any advice would be greatly appreciated. Thanks in advance.