How to Get Execution Time
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Hi All, Plz help, Here anybody tell me how can i get query execution time through vb or SQL Server. Regards: SMK
-
Hi All, Plz help, Here anybody tell me how can i get query execution time through vb or SQL Server. Regards: SMK
what about Dim timeStampBegin As DateTime Dim timeStampEnd As DateTime Dim timeDiff as TimeSpan timeStampBegin = DateTime.Now() ... query ... timeStampEnd = DateTime.Now() timeDiff = timeStampEnd.Substract( timeStampBegin )
solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...