0

Is it possible to let SQL Server 2008 make a backup to a FTP-folder.

I know it's possible to specify as the backup target in SSMS an UNC-path. But is there also the possibility to specify an FTP-Folder (inclusive user name an pwd)? If yes, what is the syntax?

HCL
  • 137
  • 5

2 Answers2

3

You will probably need to write an app in conjunction with a T-SQL script to do this, as there is nothing native to SQL server to backup to FTP.

EDIT: Something like this.

DanBig
  • 11,423
  • 1
  • 29
  • 53
2

Check out http://sqlbackupandftp.com/

sgmoore
  • 652
  • 5
  • 10