Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MIME type of SQL Server Database BACKUP file

Tags:

sql-server

I am not able to find an answer to this. Does anybody know this? I want to enable the download of .bak file and for that I need to know the mime type so that i configure the same in the IIS for .bak file.

Any help is appreciated.

like image 293
Ashish Gupta Avatar asked May 10 '10 13:05

Ashish Gupta


People also ask

What is SQL MIME type?

There is no special MIME type for SQL. Just use application/octet-stream .

What is BAK file in SQL Server?

A file with . bak extension is usually a backup file that is used by different software tools to store backups of data. From database perspective, a BAK file is used by Microsoft SQL Server for storing the contents of a database.

What is DB BAK file?

You can save a backup of your MS SQL databases to a single file on your hard drive. These backup files have names ending with the ". bak" file extension, and you use them to restore database backups through Microsoft SQL Server.


1 Answers

Not everything has a custom mime type. For generic binary files use application/octet-stream.

like image 67
Samuel Neff Avatar answered Sep 30 '22 10:09

Samuel Neff