Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi every one, I need help with devising logic for archiving data. Currently I am storing data in an access database. The customer requires the data to be archived after a month. The data is being feteched by a c# application and then stored into access
Any suggestions would be great
Posted
Updated 23-Feb-13 5:07am
v2
Comments
braop 24-Feb-13 10:47am    
Hope this helps:

1. know when you want to archive your data. say per month
2). Date will be so virtual in archiving, inserting and retrieving data
3). Create a form where data of past months can be accessed from, that is if ur data is being archive on monthly basis

Assuming u want to view that from ur access database select where month = month.today. this makes it impossible to view data of past months thus data from past months can only be accessed via the archive form.

1 solution

Select * into month from History
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900