Filetype ".bak" starts with "TAPE"

10

1

I realize this isn't strictly a programming question, but I have a file with the extension .bak, and the file starts with "TAPE". What program produced this?

unknown (google)

Posted 2009-12-06T05:52:12.413

Reputation:

Answers

19

The file is in Microsoft Tape Format (MTF). It can be a backup of a Microsoft SQL Server's database.

Josbert Lonnee

Posted 2009-12-06T05:52:12.413

Reputation: 191

4

I recently received a file that matches this description. Further investigation suggests it was produced by Microsoft SQL Server's backup command.

Tom Wrensch

Posted 2009-12-06T05:52:12.413

Reputation: 41

2

The extension .bak is commonly used by multiple programs and persons to indicate a backup of some kind. Since multiple sources could create the backup the file extension is not enough to identify the contents.

You could try opening the file in notepad and checking for a Magic Number.

Sometimes it's a direct copy of a file (readme.txt -> readme.bak) In this case I prefer to append the .bak extension instead of removing the existing one (readme.txt.bak)

Chris Nava

Posted 2009-12-06T05:52:12.413

Reputation: 7 009