从代码恢复不起作用,不提供任何错误

时间:2012-06-13 15:09:26

标签: c# sql-server-2008-r2 database-restore

我很难用C#脚本恢复多个数据库。它也没有提供任何错误 - 它什么都不做。

以下是代码:

// Connect to SQL Server
SqlConnection conn = new SqlConnection("Data Source=SERVERNAME;" + "Integrated Security=SSPI;" + "Connection timeout=60");

StreamWriter logFile = new StreamWriter(@"F:\Backups\log.txt");

try{
    conn.Open();
}catch(Exception e){
    string errorTxt = "There was an error connecting to the server: " + e.ToString();
    logFile.WriteLine(errorTxt);
}

// Get Directory
DirectoryInfo source = new DirectoryInfo(@"F:\Backups\SERVERNAME\");

foreach(FileInfo fi in source.GetFiles()){

    // We need to get the DB name:
    string filename = fi.Name.ToString();
    int bkpIndex = filename.IndexOf("_backup");

    string sql = "USE master RESTORE DATABASE " + filename.Substring(0, bkpIndex) + " FROM DISK = '" + fi.FullName + "' WITH REPLACE";

    try{
        Console.WriteLine("Restoring {0}.", filename.Substring(0, bkpIndex));
        logFile.WriteLine("SQL: {0}", sql);
        SqlCommand cmd = new SqlCommand(sql, conn);
    }catch(Exception ex){
        logFile.WriteLine("Error restoring {0}: " + ex.ToString(), filename.Substring(0, bkpIndex));
    }

}

logFile.Close()
conn.Close()

1 个答案:

答案 0 :(得分:1)

你没有在任何地方执行命令...尝试ExecuteNonQuery!

e.g。

SqlCommand cmd = new SqlCommand(sql, conn);
cmd.ExecuteNonQuery();