Checking last full backup: Full backup file 'D:\Backup\Northwind.smartdiff.f0.bkp' could not be located
Selecting differential backup: No specified criteria require a full at this time.
Executing SQLLitespeedx32.exe: Write new differential backup to 'D:\Backup\Northwind.smartdiff.f0.d0.bkp'
Error: FastCompression backup sequence has failed LSN verification
LiteSpeed FastCompressionhas attempted to locate the Full backup file '%FastCompression.f0.bkp' in either the folder (or alternate folder) designated by the FastCompression setup. If the Job tsql contains the parameter @CheckForFullBackup = 1 the error message will be returned.
The job History will display: Executed as user: username. LiteSpeed for SQL Server 5.1.0.1293 Copyright 2004-2009, Quest Software Inc. Checking last full backup: Full backup file 'D:\Backup\Northwind.FastCompression.f0.bkp' could not be located Selecting differential backup: No specified criteria require a full at this time. Executing SQLLitespeedx32.exe: Write new differential backup to 'D:\Backup\Northwind.FastCompression.f0.d3.bkp' > LiteSpeed(R) for SQL Server Version 5.1.0.1293 > Copyright 2004-2009, Quest Software Inc. > Registered Name: Microsoft > > Pr Checking last full backup: Full backup file 'D:\Backup\Northwind.smartdiff.f0.bkp' could not be located FastCompression backup sequence has failed LSN verification [SQLSTATE 42000] (Error 62402). The step failed.
The Full backup file '%FastCompression.f0.bkp' in either the folder (or alternate folder) designated by the FastCompression setup. Rerun the FastCompression tsql with the ,@ForceFull = 1 parameter so that a FastCompression Full backup is created in the correct folder, with the correct naming convention.
exec xp_slsFastCompression@database = N'Northwind',
@backupname = N'Northwind - FastCompression Backup',
@desc = N'FastCompression Backup of Northwind',
@threads = 0, @priority = 0, @logging = 2, @affinity = 0, @throttle = 100, @comment = N'',
@buffercount = 20, @maxtransfersize = 1048576, @compressionlevel = 1, @AppendDifferentialBackup = 0, @CheckForFullBackup = 1, @ExtentsChgRatioRequireFull = N'1%',
@BackupDirectory = N'D:\Backup',
@ElapsedDaysRequireFull = 14
-- If you would like to force a full or differential backup, uncomment the corresponding line below:
-- ,@ForceFull = 1
-- ,@ForceDifferential = 1
NOTE: SmartDiff is only available with a Professional license.