Hi there:
Is there a way to work around this limitation in SQLBackup?
We have 200+ databases and while trying to create a TLog backup job I get the error that it could not write the command because:
@command is too long. "It is to be no more than 3200 characters."
Thanks.
Comments
EXCLUDE backs up all databases except the ones included in the list e.g.
The wildcard option will back up all databases running in full or bulk logged recovery models when used with the BACKUP LOGS command e.g.
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
In addition to what Peter suggested, if you have generated the command using the GUI, you have the option to save the backup command as a "template". You can then use the following syntax to execute the backup command via the template:
execute master..sqlbackup '-USE "<template_name>"';
This may help get around the limitation...
Hope that helps,
Jason