20
2015
01

SQL Server 2008“备份集中的数据库备份与现有的数据库不同”解决方法

对于SQL Server 2008,有几个地方是要注意的,比方在还原数据库时,这就使还原的数据库文件制定为. bak。还原数据库时,如果出现“备份集中的数据库备份与现有数据库不同”错误的,使用下面的方法进行还原。

16
2012
04

Asp.Net 数据库备份

//读取sql数据库里面的所有数据库,并将这些数据库绑定到DropDownList里面,主要是绑定数据库名
public SqlDataReader GetServerList(DropDownList ddlDatabaseList)
{
ArrayList arr = new ArrayList();
SqlConnection connection = null;
SqlCommand command = null;
...
«1»