G
Guest
I have the following query on a 154mb table and the query runs really slow.
there is not an index on the role as there are only three distinct values in
the role field. any ideas how I can speed this query up?
SELECT field1, field2, role role INTO tbl_apl1
FROM tblassociatedpartylinks
WHERE role Like "BORROWER*" Or
role Like "COLLATERAL OWNER*";
there is not an index on the role as there are only three distinct values in
the role field. any ideas how I can speed this query up?
SELECT field1, field2, role role INTO tbl_apl1
FROM tblassociatedpartylinks
WHERE role Like "BORROWER*" Or
role Like "COLLATERAL OWNER*";