Update a table

S

smason

hello

i have a data base that records of complaints and i need to keep all
inputted data even if a record is deleted

i have a main table which i want to update to another table periodically
(once data has been inputted) but only additions to the table!

so that even though a record may be deleted out of the main table it will be
kept in the second table!

is this possible

thanks in advance
 
T

Thomas A. Rowe

Suggest you post this to the Access newsgroup.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================
 
M

Mike Mueller

As Thomas states, you can probably get a better answer in an Access NG

What I would do would be to not delete records- there are a few options on
what to actually do

#1 Add a Y/N field to the table called 'deleted'. Create a query on that
table to select all with a condition that deleted = false. Then use a form
to read the information using that query as the source
#2 Create a 'structure only' copy of the table and name it accordingly (eg
tblDeleted), and when the user uses the 'delete' button on the form reading
the original table, perform an append query of the in-use record to the
'tblDeleted', and then do the record deletion

I would probably do a version of option 1
 

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

Top