Hi all,
I have a query where by the user can enter in a description to bring back a number of records, when they enter in a single letter (which brings back about 14000) records my database crashes.
This is my search query:
SELECT tblProducts.[Product No], tblProducts.Updated, tblProducts.[Item No], tblProducts.[Element Description], tblProducts.Primary_Material_Cat, tblProducts.Secondary_Material_Cat, tblProducts.[Materal Type], tblProducts.[Base UOM]
FROM tblProducts
WHERE (((tblProducts.[Element Description]) Like "*" & [forms]![Search_Form]![txtSearch] & "*"));
Can access return 15000 plus records? Can anyone give me advice as to how to enable my search to return 15000 records as I need this functionality in my project.
Cheers,
Maggie
"Work is the curse of the drinking classes
I have a query where by the user can enter in a description to bring back a number of records, when they enter in a single letter (which brings back about 14000) records my database crashes.
This is my search query:
SELECT tblProducts.[Product No], tblProducts.Updated, tblProducts.[Item No], tblProducts.[Element Description], tblProducts.Primary_Material_Cat, tblProducts.Secondary_Material_Cat, tblProducts.[Materal Type], tblProducts.[Base UOM]
FROM tblProducts
WHERE (((tblProducts.[Element Description]) Like "*" & [forms]![Search_Form]![txtSearch] & "*"));
Can access return 15000 plus records? Can anyone give me advice as to how to enable my search to return 15000 records as I need this functionality in my project.
Cheers,
Maggie
"Work is the curse of the drinking classes