SQL server -----IF we have lot of records in Database. How we can handle them? [closed]
IF we have lot of records in Database. How we can handle them?
Doesn't matter how much data you have, SQL Server will handle itself :).
And if you are talking about performance -
- Make sure that your are using proper indexes
- Check your sql queries, they should be optimized.
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
- Shrink your database by schedule
- Check the log file size or delete if unnecessary.
精彩评论