tags:

views:

49

answers:

3

IF we have lot of records in Database. How we can handle them?

+2  A: 

Doesn't matter how much data you have, SQL Server will handle itself :).

And if you are talking about performance -

  1. Make sure that your are using proper indexes
  2. Check your sql queries, they should be optimized.
Ramesh Soni
A: 

If you are asking about managing large data in the database tables for this in SQL there is a feature called data partitioning. For this you can check this http://www.mssqltips.com/tip.asp?tip=1200

Prakash Kalakoti
A: 
  • Shrink your database by schedule
  • Check the log file size or delete if unnecessary.
ppshein