I have a SQL Server backup from my server and I have a comfortable way to access the daily SQL Server backups.
I want to do some asp.net coding using Visual Studio 2012, and I do not want to install SQL Server on my machine since it is too heavy and slowing down the system.
I see that you can add .mdf
file to a project and use it as a standard database:
- is it possible to do the same with SQL Server backup?
- is it possible to extract
.mdf
file from SQL Server backup without SQL Server?
Thank you in advance, M.