Can anyone tell me how many columns/rows a table can handle before becoming slow and unusable ?
SQL Table
Collapse
X
-
Originally posted by ck9663I have processed, 15 million rows - by - 100 columns. I just process 380 columns by 60 rows...Everythi ng is working, at least according to the execution time I am required to produce.
-- CK
Is it better to use multiple tables instead of 1 table.Comment
-
Since it's a payroll system, I'd go for the multiple tables. It will also follows the discipline of a Relational Database. Since SQL-Serve can be considered as Relational Database, you can save a lot of time enforcing data integrity and consistency on the database level and not on the apps side.
You also have to remember that you will have monthly or semi-monthly transaction (depending on how payroll is processed), including handling of deductions.
-- CKComment
-
Originally posted by ck9663Since it's a payroll system, I'd go for the multiple tables. It will also follows the discipline of a Relational Database. Since SQL-Serve can be considered as Relational Database, you can save a lot of time enforcing data integrity and consistency on the database level and not on the apps side.
You also have to remember that you will have monthly or semi-monthly transaction (depending on how payroll is processed), including handling of deductions.
-- CK
this is fairly easy. What i would like to knw is the month end procedure that will update all the tables with the recent data AND insert the Month data into a MonthEnd table for record purposes.
Is it possible to create a .dll to handle these procedures ??Comment
Comment