Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2005-09-21 : 07:19:14
|
| Richard writes "Hi,I have the dbhost, dbname, dbuser and dbpasswd for a sql server database. I want to back this up on my local machine but don't have enterprise manager installed here. Is there any way I can download a sql file from sql server without using enterprise manager? Many thanks,Richard" |
|
|
Thrasymachus
Constraint Violating Yak Guru
483 Posts |
Posted - 2005-09-21 : 09:15:52
|
| My 2 step job for backups on remote serversFirst step, write something like so...Backup Database MyDatabase To Disk = 'C:\MyBackup.bak' WITH INITSecond step is an ftp script to copy the file back to home base, and it goes something like thisftpopen www.MyWebServerWithFTPService.comusernamepasswordcd MyBackupDirectorydel YesterdaysBackup.bakput C:\MyBackup.bakquit====================================================Regards,Sean Roussyaka the merciless black hearted capitalist troublemaker"pimpin ain't easy, but someone has to do it" -- Pimpin Whitefolks(?) |
 |
|
|
|
|
|