can anyone explain it in simple words relating to Microsoft SQL Server Management studio-what is a .mdf and .ldf file.
+4
A:
These two files make up a database in SQL Server. Specifically, .mdf is the data file and .ldf is the transaction log. If you detached the database from SQL Server, these files can be copied to another server and be reattached in full consistent state (no data loss).
spoulson
2010-06-24 08:30:53
A:
There is another question in SO referring to the same topic. Did you check it?
http://stackoverflow.com/questions/1175882/what-is-an-mdf-file
ckv
2010-06-24 08:35:33