对于SQL Server 2008,有几个地方是要注意的,比方在还原数据库时,这就使还原的数据库文件制定为. bak。还原数据库时,如果出现“备份集中的数据库备份与现有数据库不同”错误的,使用下面的方法进行还原。
20
2015
01
16
2012
04
Asp.Net 数据库备份
//读取sql数据库里面的所有数据库,并将这些数据库绑定到DropDownList里面,主要是绑定数据库名
public SqlDataReader GetServerList(DropDownList ddlDatabaseList)
{
ArrayList arr = new ArrayList();
SqlConnection connection = null;
SqlCommand command = null;
...
public SqlDataReader GetServerList(DropDownList ddlDatabaseList)
{
ArrayList arr = new ArrayList();
SqlConnection connection = null;
SqlCommand command = null;
...
发布:郑德才博客 | 分类:学习之路 | 评论:0 | 浏览: