Restore database backup over the network

前端 未结 10 1211
不思量自难忘°
不思量自难忘° 2021-01-30 03:58

How do you restore a database backup using SQL Server 2005 over the network? I recall doing this before but there was something odd about the way you had to do it.

10条回答
  •  闹比i
    闹比i (楼主)
    2021-01-30 04:50

    You can use the SP xp_cmdshell to map the networkdrive for sql server, after that it will show up in the file browsing window.

    EXEC xp_cmdshell 'NET USE Z: SERVERLOCATION PASSWORD /USER:DOMAIN\USERNAME'
    

    more info here: DB Restore from Network Drive

    Worked for me!

提交回复
热议问题