Viewing 15 posts - 1 through 15 (of 17 total)
Generally, such functionality is covered by a third-party tools or your own(ex: PowerShell script). We are using the SQLBackupAndFTP[/url]. It has a several restrictions, but in most standart cases it...
July 31, 2012 at 4:13 am
CloudBerry seems like a nice product, but adjusting it to SQL Server backups seems a bit convoluted. SQLBackupAndFTP allows you to do backups to Amazon S3 in a much simpler...
May 23, 2012 at 2:59 pm
Using built-in SQL Server tools is always a good approach. However, depending on your working scenario 3rd. party tools can bring simplicity and a wider range of management tools.
For example...
July 26, 2011 at 1:54 pm
Why spend time in a script to backup one or several databases when there are so many tools available.
SQL Backup and FTP lets you backup your databases, schedule backup jobs,...
July 24, 2011 at 10:20 am
You can save your backups to a mapped drive like this:
BACKUP DATABASE MyDB to DISK = 'D:\Backups\MyDB.bak' as long as you have the proper permissions on the remote server.
Even though...
July 22, 2011 at 1:15 pm
SQL Server and FTP will let you schedule backups. You can also save your backups in a remote location on your LAN or FTP sites, compression and encryption is also...
July 16, 2011 at 1:02 pm
You must use SSMS Express to manage your SQL Express databases and run manual backups. However, because SQL Express lacks of SQL Agent you won't be able to schedule backup...
July 16, 2011 at 12:27 pm
I don't see the point of dealing with custom scripts to backup SQL Express when there are many tools available for that.
This tool http://sqlbackupandftp.com lets you create manual...
July 16, 2011 at 12:16 pm
You should not spend time dealing with SQL DMO or custom scripts to backup your SQL Express databases.
Try this tool http://sqlbackupandftp.com. You can create manual or scheduled backups...
July 16, 2011 at 12:10 pm
You can also try this GUI tool SQL Backup and FTP which lets you schedule your backups. It is very simple to use and it's free 🙂
July 5, 2011 at 8:00 am
Jeffrey Williams-493691 (6/17/2011)
AlexGreen (6/17/2011)
There are also third party tools...
June 17, 2011 at 10:40 am
Have you consider shrinking your database before back it up to release unused space?
You can do this with DBCC SHRINKDATABASE('DB_Name', TRUNCATEONLY)
June 17, 2011 at 9:01 am
Have you consider shrinking your database before back it up to release unused space?
You can do this with DBCC SHRINKDATABASE('DB_Name', TRUNCATEONLY)
Just note that it is just a solution for the...
June 17, 2011 at 9:00 am
SQL Server has three recovery models:
Simple: This model minimally logs most transactions.
Full: logs all transactions an retains all the transaction log records until after they're backed up.
Bulk-Logged: minimally logs bulk...
June 17, 2011 at 8:49 am
The user under which SQL Server Agent runs doesn't seem to have access to write on drive C:. However, unless you really need it, for security reasons you should avoid...
June 17, 2011 at 8:39 am
Viewing 15 posts - 1 through 15 (of 17 total)