How Can I backup An Sql Server Database To My Local Drive From Remote Server
|
You can run a 'generate script' task from within SSMS that allows you to save it to disk local to where SSMS is running from. It's not a 'SQL Server Backup' in the traditional sense, but it is a backup of data. If you need a .bak file that's an actual 'backup', you need to save it local to the SQL server and copy it. | |||
feedback
|
|
If you need to do it every (hour,day,week) make a dump using the special script (you may find lots of them in the internet) and download the last dump to you local drive. Another way is to use software specializing in that - Handy Backup or Acronis, they can backup your DB remotely to wherever you want, I don't know exactly how they backup to local drive, I mean, whether they store in aproprietary format or not, but Handy Backup can store backups online, so you will be able to get dumps via ftp from their servers. | |||
|
feedback
|