4
Answers

How to manage lacs of data in one table

Vijay Yadav

Vijay Yadav

13y
1.4k
1
In database,there is one table named tblRecord in which daily 1000 records get inserted, after 1 month there would be 30000 and in one year 360000. If this happened then it would be difficult to retrieve the data from this table. Please suggest me, how to manage this much data or more than that.
Answers (4)
1
Muralidharan Deenathayalan

Muralidharan Deenathayalan

NA 11.9k 1.5m 13y

Per year this 3,60,000 does not have a really big issue. This is fine for me.


There are lot ways for the performance point of view.
1) You can create Index. If you create more index, it may affect the performance of inserting . Think before creating multiple index. If you have primary key, automatically it will create clustered index for you.
After the indices are created, after particular time, you may need to Rubuild/reindex it.
2) You can create some views
3) You can archive data based on some date /year.
4) Splitting one table data into multiple tables.

HTH.
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 13y
The important question is how much data it is total instead of how many records there are. If each record is 100 bytes then 360,000 records would be 35156 KB which is 34 MB, correct? That is not very big at all. If the records are larger then it might be possible to reduce the size of each record but if not then you must do what the applictions needs to do.

Perhaps if the records are large then the tables can be split into two or more tables with the frequently used data separate from the infrequently used data.
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 13y

 Vijay,

 There is nothing like table crash.

 We can say database got crashed or the Hard disk got crashed.

 Both are different scenarios.


 Its all depends upon the server Hard Disk, RAM, space/size allocated during database creation etc.

 
 You can over come your problem by using Partitioned Tables concept.

 Also, look into Database AutoGrow feature settings.


0
Vijay Yadav

Vijay Yadav

NA 1.7k 537.9k 13y
ok, but  3,60,000 records or more can lead to crash the table, Is it right?