开发者

What's the difference between a SQL Server database FILE and an actual SQL Server database in ASP.NET?

Well, the subject heading essentially says it all: what's the difference开发者_开发技巧 between a SQL Server database file (.mdf) and an actual SQL Server database? Also, a couple of follow-up questions:

Do database files exist for both SQL Server 2008 Express and SQL Server 2008 R2? Is there a difference between those if they do?

When uploading a site that has a db file, will it automatically hook up with the db running on the server? Would it need the db's connection string info?


MDF and LDFs are used by Express and full versions of SQL. Have a look here

Upload a MDF - no, in general a Database will need to be Specifically attached to the server or restored from backup, but the one exception is which can be attached in SQL Express via AttachDbFilename.

Express MDF's and LDF's can be attached in the full versions of SQL, although the reverse is not necessarily true - Express has limitations such a size limitation and features like Indexed Views aren't available in Express.


The "database" here probably refers to the set of programs and services you send queries to and receive resultsets from. The .mdf file is where the data is actually stored. The database program reads the database file.

I'm pretty sure the Express editions have the same architecture (data in an MDF file). It's possible (though I'm not really sure) there may be differences in the internal structure of the file between editions of the program.

Not sure about the answer to the third question, but usually instaling the database is a separate process from simply uploading the site (in my experience).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜