标签: vb.net sql-server-2012 database-restore
我试图在vb.net中还原备份数据库,但是遇到此问题,这是什么问题?
This is the image of error
这是我正在使用的代码。
--inline-style
答案 0 :(得分:0)
您的连接字符串将数据库Payroll用作Intial Catalog。
Payroll
Intial Catalog
如消息中所述,在执行此操作时,建议改用master数据库。
master
将Initial Catalog更改为master,它应该可以工作:
Initial Catalog
constr2 = "Data Source=" & get_servername2 & ";Initial Catalog=master; Integrated Security=True"