"how to backup sql database programmatically in c#" Code Answer

5

the following link has explained complete details about how to back sql server 2008 database using c#

sql database backup can be done using many way. you can either use sql commands like in the other answer or have create your own class to backup data.

but these are different mode of backup.

  1. full database backup
  2. differential database backup
  3. transaction log backup
  4. backup with compression

but the disadvantage with this method is that it needs your sql management studio to be installed on your client system.

By neumino on January 25 2022

Answers related to “how to backup sql database programmatically in c#”

Only authorized users can answer the Search term. Please sign in first, or register a free account.