M
Mark
Hi group.
I am in the process of running a query that is trying to cross reference a
table containing file information against a list of useable file extensions.
I have imported this list of file extensions permissable into Access and
have writen something in SQL as follows:
SELECT *
FROM Hnb_groups
WHERE [FILE_Type] NOT IN (SELECT [File_Extension] FROM [FILE_EXTENSIONS]);
Hnb_groups contains the original info' I am trying to reference. The
FILE_EXTENSIONS file contains info related to the title.
It seems to be crashing Access all the time. There are typicall 500,000+
records in the Hnb_groups tables.
Is there an issue with the SQL code that would make it slower?
Any help is greatly appreciated as this is my first assignment in my first
graduate post since finishing college.
M
I am in the process of running a query that is trying to cross reference a
table containing file information against a list of useable file extensions.
I have imported this list of file extensions permissable into Access and
have writen something in SQL as follows:
SELECT *
FROM Hnb_groups
WHERE [FILE_Type] NOT IN (SELECT [File_Extension] FROM [FILE_EXTENSIONS]);
Hnb_groups contains the original info' I am trying to reference. The
FILE_EXTENSIONS file contains info related to the title.
It seems to be crashing Access all the time. There are typicall 500,000+
records in the Hnb_groups tables.
Is there an issue with the SQL code that would make it slower?
Any help is greatly appreciated as this is my first assignment in my first
graduate post since finishing college.
M