I need to backup my SQL Server 2008 database on another PC on the network. I even mapped the network drive and assigned it another letter with the driver.
But when I try to select the .bak file when exporting, only C: appears. I even restarted SSMS.
Can someone point out what else I might need? Thank!
You can use sql
BACKUP DATABASE Foo TO DISK = '\\myserver\myshare\foo.bak' WITH INIT
Verify that the account used for sql services has sufficient permissions to write to another computer.
. , Sql , , .
Source: https://habr.com/ru/post/1747094/More articles:Which Python XML library should I use? - pythonHow to get a series of paintings? - androidjavascript date.utc problem - javascriptEntertainment with casting and inheritance - c ++Is it possible to upload a file full of binary data to GDB when GDB is debugging the main file? - c ++mongoDB many for many with one request? - mongodbA utility that helps in locking files - expert advice needed - pythonUnable to disable jQuery cache - jqueryЕсть ли способ загрузить существующую строку соединения для Linq to SQL из файла app.config? - c#Conditional XAML - conditionalAll Articles