You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The D2 database which is less than MaxFileSize backups cleanly
The D1 database which take about 6 file, get an error. I cant see the error in the log as before stating the error it runs our of characters.
When I do
EXECUTE [dbo].[DatabaseBackup] @databases = 'D1, D2', @Directory = 'S:\BACKUP',
@BackupType = 'FULL', @verify = 'Y', @Cleanuptime = 96, @Checksum = 'Y',
@LogToTable = 'Y',
@MaxFileSize=150000
This does complete cleanly, which is why I know about the 6 files.
The text was updated successfully, but these errors were encountered:
Doing the following:
EXECUTE [dbo].[DatabaseBackup]
@databases = 'D1, D2',
@url = 'https://xxxxx.blob.core.windows.net/backups',
@BackupType = 'FULL',
@verify = 'Y',
@Checksum = 'Y',
@LogToTable = 'Y',
@MaxFileSize=150000
The D2 database which is less than MaxFileSize backups cleanly
The D1 database which take about 6 file, get an error. I cant see the error in the log as before stating the error it runs our of characters.
When I do
EXECUTE [dbo].[DatabaseBackup]
@databases = 'D1, D2',
@Directory = 'S:\BACKUP',
@BackupType = 'FULL',
@verify = 'Y',
@Cleanuptime = 96,
@Checksum = 'Y',
@LogToTable = 'Y',
@MaxFileSize=150000
This does complete cleanly, which is why I know about the 6 files.
The text was updated successfully, but these errors were encountered: