About 130,000 results
Open links in new tab
  1. How can I backup a remote SQL Server database to a local drive?

    Oct 15, 2010 · I need to copy a database from a remote server to a local one. I tried to use SQL Server Management Studio, but it only backs up to a drive on the remote server. Some points: …

  2. Command line tool / script to backup a remote SQL Server …

    Jul 21, 2018 · I'm looking for a command line tool or a script (running under windows) that can backup a remote SQL Server to a local file (.sql, SQL Server backup, even CSV, all formats …

  3. How to take a remote SQL server database backup to local machine?

    Jan 7, 2021 · I've to take a SQL database backup from remote machine to local Linux machine and through command line. Hence executed following command - sqlcmd -S xxx.xxx.xxx.xxx …

  4. Enable SQL Server to backup on remote machines/drives

    Jul 13, 2009 · I have a SQL Server (2000, 2005 and 2008) and I'd like to use SQL Agent (or even a simple backup database 'xxx' to disk = 'yyy'), to backup to remote drives. I.e: i have a …

  5. Restore database backup over the network - Stack Overflow

    Aug 19, 2008 · 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.

  6. SQL Server Backup to a Remote Server - Stack Overflow

    Jan 7, 2012 · I realise there is a command: BACKUP DATABASE [DB Name] TO DISK [PATH] Is it possible to backup to a remote location? - E.G. the web server rather than the database …

  7. Create Sql Server Backup on Local Machine - Stack Overflow

    Jan 25, 2010 · BACKUP DATABASE YourDatabase TO DISK = '\\SomeMachine\Backups\YourDatabase.Bak'; Backing Up to a File on a Network Share For …

  8. C# SQL Server backup of a remote database to the remote default …

    Feb 5, 2020 · This application connects to a remote SQL-server. This application needs to perform a backup of the connected database to the default backup location (retrieved via …

  9. Backup a remote SQL Server database - Stack Overflow

    Mar 22, 2017 · I want to backup my remote SQL Server database onto the local computer. So far I've tried: using (SqlConnection defaultSqlConnection = new …

  10. sql - Restore .bak file to remote database - Stack Overflow

    May 30, 2012 · Restore from remote filesystem Alternatively you can restore from the remote backup file using UNC syntax. I typically don't use this option, but it is useful if there won't be …