调用sql语句实现SqlServer的备份和还原
来源: 阅读:779 次 日期:2014-11-03 10:10:25
温馨提示: 小编为您整理了“调用sql语句实现SqlServer的备份和还原”,方便广大网友查阅!

调用sql语句实现SqlServer的备份还原,包括完整备份和差异备份,因为执行备份还原需要一定的时间,因此需要设定 CommandTimeout参数。

///

/// 备份数据库 调用SQL语句

///

/// 备份文件名

/// 0表示完整备份,为1表示差异备份

///

public bool BackUPDB(string strFileName, int BackUpType)

{

//如果是差异备份,就是看一下文件是否存在,如果不存在,就不执行

if (BackUpType == 1 && File.Exists(strFileName) == false)

{

return false;

}

bool result = false;

try

{

string[] strConnSqlArr = strConnSql.Split(';');

string DBName = strConnSqlArr[4].ToString()。Split('=')[1].ToString();//数据库名称

string backUp_full = string.Format("backup database {0} to disk = '{1}' ;", DBName, strFileName);

string backUp_Diff = string.Format("backup database {0} to disk='{1}' WITH DIFFERENTIAL ;", DBName, strFileName);

WKK.DBUtility.DbHelperSQL.ExecuteSql(BackUpType == 0 ? backUp_full : backUp_Diff, 600);

result = true;

}

catch (Exception ex)

{

Common.Log.WriteLog(string.Format("备份{0}数据库失败", BackUpType == 0 ? "完整" : "差异"), ex);

// System.Diagnostics.Debug.WriteLine(string.Format("备份{0}数据库失败", BackUpType == 0 ? "完整" : "差异"));

result = false;

}

finally

{

if (result == true)

{

string str_InfoContent = string.Format("备份{0}数据库成功", BackUpType == 0 ? "完整" : "差异");

// System.Diagnostics.Debug.WriteLine(str_InfoContent);

}

}

return result;

}

///

/// 还原数据库 使用Sql语句

///

/// 数据库名

/// 备份文件名

public bool RestoreDB(string strDbName, string strFileName)

{

bool result = false;

try

{

string strConnSql = ConfigurationSettings.AppSettings["ConnectionString"].ToString();

string[] strConnSqlArr = strConnSql.Split(';');

string DBName = strConnSqlArr[4].ToString()。Split('=')[1].ToString();//数据库名称

#region 关闭所有访问数据库的进程,否则会导致数据库还原失败 闫二永 17:39 2014/3/19

string cmdText = String.Format("EXEC sp_KillThread @dbname='{0}'", DBName);

WKK.DBUtility.DbHelperSQL.connectionString = strConnSql.Replace(DBName, "master");

WKK.DBUtility.DbHelperSQL.ExecuteSql(cmdText);

#endregion

string Restore = string.Format("RESTORE DATABASE {0} FROM DISK='{1}'WITH replace", DBName, strFileName);

WKK.DBUtility.DbHelperSQL.ExecuteSql(Restore, 600);

result = true;

}

catch (Exception ex)

{

MessageBox.Show("还原数据库失败rn" + ex.Message, "系统提示!", MessageBoxButtons.OK, MessageBoxIcon.Warning);

Common.Log.WriteLog(string.Format("还原数据库失败--{0}", DateTime.Now.ToString()), ex);

result = false;

}

finally

{

//恢复成功后需要重启程序

if (result)

{

//

}

}

return result;

}

///

/// 执行一条SQL语句

///

/// sql语句

/// 等待连接打开的时间(以秒为单位)。 默认值为 15 秒。

///

public static int ExecuteSql(string SQLString, int setTimeOut)

{

using (SqlConnection connection = new SqlConnection(connectionString))

{

using (SqlCommand cmd = new SqlCommand(SQLString, connection))

{

try

{

connection.Open();

cmd.CommandTimeout = setTimeOut;

int rows = cmd.ExecuteNonQuery();

connection.Close();

return rows;

}

catch (System.Data.SqlClient.SqlException e)

{

connection.Close();

throw e;

}

}

}

}

更多信息请查看IT技术专栏

更多信息请查看 数据库
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们| 联系我们| 人才招聘| 网站声明| 网站帮助| 非正式的简要咨询| 简要咨询须知| 加入群交流| 手机站点| 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:
咨询QQ:526150442(9:00—18:00) 版权所有:
云南网警报警专用图标
Baidu
map