IF we have lot of records in Database. How we can handle them?
views:
49answers:
3
+2
A:
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.
Ramesh Soni
2010-08-05 05:56:11
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
2010-08-05 05:56:43
A:
- Shrink your database by schedule
- Check the log file size or delete if unnecessary.
ppshein
2010-08-05 06:05:48