How can I see the full compliment of transaction log backups in a single .DMP file?
FYI, I'm running a nightly FULL BACKUP on Database_A then I run Hourly Log backups on Database_A via this command:
BACKUP LOG Database_A TO DISK='C:\MyDisk\MyDBLogBackup.dmp' INIT
--and subsequently run this NOINIT command throughout the day:
BACKUP LOG Database_A TO DISK='C:\MyDisk\MyDBLogBackup.dmp' NOINIT
After this Backup process runs multiple times I then run the following command:
RESTORE FILELISTONLY FROM DISK='C:\MyDisk\MyDBLogBackup.dmp'
and I see the .mdf and .ldf
What is the command to render the list of contiguous log backup files appended to the set?
BT