Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What are mdf,ndf,ldf files and how to see the data in those
files?

Answer Posted / ravi santlani

MDF is the main database files - It's a SQL Data files where all the data in the database objects are stored in. (like tables, stored procedures, views, triggers etc are stored in the mdf file of sql server). This is the reason whey we use .MDF file to attache the database. Once we attach the .mdf we were able to see all the data exist in that respective database.


LDF is the log files - The size of the log file(ldf) is determined my the logging level you have set up on the database. Simple, full, and buld logged are the options. Simple being the least, and full being the most. The log (if in full) will alow you to re-apply transactions to the databse incase of a failure. If your looking for some performance improvement, there are a lot of things that can be done.

Just to focus on the files you could more the location of the LDF file to a separate physical drive. This will increate performance because writing to the log and writing to the mdf files wont compete for each other for throughput tot he drive.


NDF are secondary databse files (Same as mdf, but you can only have 1 Main database file).


You can also create a NDF file for the databese, and change some of the tables to be stored on this NDF. This file also could be stored on a separate physical drive. Some advantages to this are:

Tables that are written to most frequently are stored in one file, and tables that are relatively static are in another. Having to smaller file to write to for transactions will help with throughput.

Is This Answer Correct ?    46 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the main difference between ‘between’ and ‘in’ condition operators?

1276


Explain indexes disadvantages?

1141


What are pessimistic lock and optimistic lock?

1141


How many types of relations are there between dimension and measure group? : sql server analysis services, ssas

1247


What is the difference between online clustering and Offline clustering?

2477


What are the differences between substr and charindex in sql server.

1189


What is autocommit mode in sql server?

1266


what are the different ways to return the rowcount of a table?

1050


What are SSL and TSL protocols?

1034


How to update a field in SQL after ALTERING a row?

1286


What are a scheduled jobs or what is a scheduled tasks?

945


What is the difference between composite index and covering index?

1007


Can you move the resources after pausing the node? : sql server database administration

1167


How to move database physical files in ms sql server?

1099


Is sql server a database?

1040