|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Backing up to a remote machine.
I have been searching for a very long time for an effective way to replicate mysqldump on SQL Server.
My particular problem is this - I have databases on 3rd party database servers that I don't have access to the hard drive for. Therefore I can't use 'All tasks>Backup database'. Is there a way to do this in SQL? In particular I'm looking for a way to create this backup using a script in ASP. (I am just looking for the SQL, not the ASP script). |
|
#2
|
|||
|
|||
|
If you can access the database through Query Analyzer, wouldn't it be possible to backup the database to your computer with the following command?
USE MASTER GO BACKUP DATABASE <DATABASENAME> TO DISK = '\\ComputerName\Drive\Directory\BackupName.BAK GO Just a thought... |
|
#3
|
|||
|
|||
|
As far as I know, that won't work without access to the machine the server sits on, or another machine on the network.
If there is a syntax for specifying the drive as being one that is local to Enterprise Manager rather than the database server then it will work. |
![]() |
| Viewing: Dev Shed Forums > Databases > MS SQL Development > Backing up to a remote machine. |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|