I am developing one c# .NET application.
I am using database of Microsoft Access(OLEDB).
I want to take back up of database time to time (Programatically).
(Or As i can create .bak file in sqlserver2008 r2)
What should i do?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
An Access database is usually a single file.
To do a programmatic backup you can simply use a
Of course you can add a simple routine that takes your input database, zip and store it, in your backup directory, optionally passing a password, like this:
this snippet of code requires the DotNetZip Library