Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 900141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T15:20:05+00:00 2026-05-15T15:20:05+00:00

Does anybody know how to backup SQL Server 2005/2008 database with C# and get

  • 0

Does anybody know how to backup SQL Server 2005/2008 database with C# and get the database backup progress?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T15:20:05+00:00Added an answer on May 15, 2026 at 3:20 pm

    Here’s a pure ADO.NET solution, if you are having difficulty installing SMO/SQLDMO on the target machine (it’s a pain in the behind, best avoided if you can).

    public void BackupDatabase(SqlConnection con, string databaseName, string backupName, string backupDescription, string backupFilename) {
        con.FireInfoMessageEventOnUserErrors = true;
        con.InfoMessage += OnInfoMessage;
        con.Open();
        using(var cmd = new SqlCommand(string.Format(
            "backup database {0} to disk = {1} with description = {2}, name = {3}, stats = 1",
            QuoteIdentifier(databaseName),
            QuoteString(backupFilename),
            QuoteString(backupDescription),
            QuoteString(backupName)), con)) {
            cmd.ExecuteNonQuery();
        }
        con.Close();
        con.InfoMessage -= OnInfoMessage;
        con.FireInfoMessageEventOnUserErrors = false;
    }
    
    private void OnInfoMessage(object sender, SqlInfoMessageEventArgs e) {
        foreach(SqlError info in e.Errors) {
            if(info.Class > 10) {
                // TODO: treat this as a genuine error
            } else {
                // TODO: treat this as a progress message
            }
        }
    }
    
    private string QuoteIdentifier(string name) {
        return "[" + name.Replace("]", "]]") + "]";
    }
    
    private string QuoteString(string text) {
        return "'" + text.Replace("'", "''") + "'";
    }
    

    The stats = 1 clause tells SQL Server to emit severity 0 messages at the specified percentage interval (in this case 1%). The FireInfoMessageEventOnUserErrors property and InfoMessage event ensure that the C# code captures these messages during execution rather than only at the end.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anybody know how to parse a string below to get these two strings:
Does anybody know how to get rid of the annoying tooltips that pop up
Does anybody know how to automagically get xpath with keys when using dom4j elements?
Does anybody know how to get thumbnail (still image) from 3gb video file? First
Does anybody know how can i get the member id in a loop of
Does anybody know why this function, when passed an invalid date (e.g. timestamp) to
Does anybody know if the CUDA library 'Thrust' can generate random numbers on the
Does anybody know how to programmatically disable the keyboard individual letter pop-up? (This blue
Does anybody know why my getAltitude in the following always returns 0? package com.example.helloandroid;
does anybody know how to insert code into lyx? just like what is available

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.