I am wondering if you can use Linq to SQL using a .mdf file on a machine without a SQL Server instance installed?
views:
118answers:
3
+1
A:
You have to attach the database to some instance of Sql server. You'll probably want to do this on the same machine, otherwise you add in network latency (which can be extreme in some cases) when writing to the database.
Will
2009-05-17 19:53:28
+1
A:
Nope, you need to attach the file to some instance of MSSQL. You can do it with MsSQL Express.
backslash17
2009-05-17 20:00:10
Sorry I forgot the link:http://www.microsoft.com/Sqlserver/2005/en/us/express-down.aspx
backslash17
2009-05-17 20:04:56
So do you think its possible that .mdf file can be used as a sql database without sql express installation ? I am working on a project in which sql express taking pretty long time and making software bulky in size
ANIL MANE
2009-06-22 15:19:46
You need to attach the file always to a SQL server, don't confuse the MSSQL Express edition with the MSSQL Management Studio Express Edition. You always need an SQL server, the Management Studio can be installed in any machine to administer the SQL instance but it is not an SQL instance at all.
backslash17
2009-06-22 17:40:24