Is it possible to use a SQL Server database, i.e. a .mdf
file, without having to install SQL Server (Express)?
Asked
Active
Viewed 153 times
1
-
You could convert it to SQLite: http://stackoverflow.com/questions/959711/convert-sql-server-mdf-file-into-sqlite-file as that is embeddable. – Ian Mercer Sep 29 '15 at 15:07
1 Answers
1
No you cannot use .mdf
file without installing SQL Server on your system. However, there are some open source projects which you might be interested to look in like OrcaMDF which you can use to read the SQL server data files without the usage of SQL Server installation.

Rahul Tripathi
- 168,305
- 31
- 280
- 331