Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
shuvi
Starting Member
4 Posts |
Posted - 2008-04-10 : 12:44:17
|
| I have a number of databases with large tables. I need to update them from time to time. I want to get the recordcount of the table and calculate based on that the amount of time it would take to update the table. Any idea who I can do this? I'm using coldfusion 8 with sql to do this. Any advice would be appreciate!ThanksShuvi |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-04-10 : 12:48:27
|
| SELECT COUNT(*) FROM Table gives record count. |
 |
|
|
shuvi
Starting Member
4 Posts |
Posted - 2008-04-11 : 11:56:13
|
| I do know how to get the count. What I want to know if I can estimate an update time based on the count.Thanks! |
 |
|
|
|
|
|