February 8, 2010 at 11:47 am
How do i know if a backup file is full backup or differential backup or anything else ?
February 8, 2010 at 11:56 am
check the backupset table in msdb on the source of the backup server, it would have the type of backup and the file name
-------------------------------------------------
-Amit
Give a man a fish and he'll ask for a lemon. Teach a man to fish and he wont get paged on weekends !! :w00t: - desparately trying to fish [/size]
February 8, 2010 at 11:57 am
also you could try this
RESTORE VERIFYONLY FROM backup_device WITH LOADHISTORY populates the columns of the backupmediaset table with the appropriate values from the media-set header.
-------------------------------------------------
-Amit
Give a man a fish and he'll ask for a lemon. Teach a man to fish and he wont get paged on weekends !! :w00t: - desparately trying to fish [/size]
February 8, 2010 at 11:59 am
The typical file extensions are:
Full Database Backup - *.bak
Transaction Log Backup - *.trn
Differential Backup - *.dif
Filegroup Backup - *.fil
February 8, 2010 at 12:18 pm
actually i am looking in to a old bak file from tape and more over all our backup files are saved as .bak files.
February 8, 2010 at 1:34 pm
Run restore headeronly from disk='backupfilenamewithpath' and chk column named 'backup type' in output.
Backup type:
1 = Database
2 = Transaction Log
4 = File
5 = Differential
Database
6 = Differential File
MJ
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply