I am needing to query an existing database and strip out addresses that have been flagged as invalid. The problem is that procedure to flag an address as invalid is to put an asterisk in front of the address. This means that I must search for a wildcard character.
I have used the criteria “not like “[*]*” in order to “not pull” the invalid addresses. This works, but the query takes about 3 minutes to run. If I remove this criteria, it runs in under 3 seconds. Does anyone have any alternative?