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.

 All Forums
 SQL Server 2005 Forums
 Transact-SQL (2005)
 Calculate Update time based on recordcount

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!

Thanks
Shuvi

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-04-10 : 12:48:27
SELECT COUNT(*) FROM Table gives record count.
Go to Top of Page

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!
Go to Top of Page
   

- Advertisement -