How to find the execution time of a stored procedure?
here are two options to find the execution time of the stored procedure, First Option: Get the current time before execution. Execute the stored procedure. Get the current time after execution. Manipulate the difference in times which will provide you the exact execution time. declare @startproc datetime declare @endproc datetime declare @time integer select @startproc…
How to override methods in C#
The F method in B hides the virtual F method inherited from A. Because the new F in B has private access, it only includes the class body of B and does not extend to C. The declaration of F in C is therefore permitted to override the F inherited from A. class A {…
Read More