Update a table

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
smason [ Fr, 11 Januar 2008 16:56 ] [ ID #1905304 ]

Re: Update a table

Suggest you post this to the Access newsgroup.

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

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


"smason" <smason [at] discussions.microsoft.com> wrote in message
news:3C09EB42-75C5-4CA9-A595-217DED789C55 [at] microsoft.com...
> 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
tarowe [ Fr, 11 Januar 2008 17:00 ] [ ID #1905305 ]

Re: Update a table

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



"smason" <smason [at] discussions.microsoft.com> wrote in message
news:3C09EB42-75C5-4CA9-A595-217DED789C55 [at] microsoft.com...
> 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
Mike Mueller [ Fr, 11 Januar 2008 21:02 ] [ ID #1905320 ]
Microsoft » microsoft.public.frontpage.client » Update a table

Vorheriges Thema: tag list
Nächstes Thema: What is the purpose of an empty folder named .filter?