delete all records but keep table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to delete all records in a table but keeping the table. This is to
allow new records to be push into the table by my IT admin (he is not
familiar with Access). Can't do appending data as past weeks data may
change. Any suggestions?
 
Create a macro with the RunSQL action.

The statement to delete all records from Table1 is:
DELETE FROM Table1;
 
Eddy said:
I need to delete all records in a table but keeping the table. This
is to allow new records to be push into the table by my IT admin (he
is not familiar with Access). Can't do appending data as past weeks
data may change. Any suggestions?

Use a delete query.
 
Thanks for helping newbie! Exactly what I need.

Allen Browne said:
Create a macro with the RunSQL action.

The statement to delete all records from Table1 is:
DELETE FROM Table1;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top