Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Auto-Delete Table

Status
Not open for further replies.

benperrydog

Programmer
Feb 9, 2001
2
DE
Hi y'all,

Sorry, this is a newbie question: I have a table of undeliverable email addresses and I need these to be deleted from a larger table through some sort of recordset.delete routine. Any takers?
 
You could run a Delete query daily or for whatever period you specify. The query criteria would simply be those emails that are undeliverable. It will only delete those records and leave the rest intact.

DELETE *
FROM tablename
WHERE (((emailaddressfield)="markedundeliverable"));
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top