I have 2 stored procedures, where the second stored procedure is an improvement of the first one.
I'm trying to measure by exactly how much that is an improvement.
Measuring
clock timedoesn't seem to be an option as I get different execution times. Even worse, sometimes (rarely, but it happens) the execution time of the second stored procedure is bigger than the execution time of the first procedure (I guess due to the server workload at that moment).Include client statisticsalso provides different results.DBCC DROPCLEANBUFFERS,DBCC FREEPROCCACHEare good, but the same story...SET STATISTICS IO ONcould be an option, but how could I get an overall score as I have many tables involved in my stored procedures?Include actual execution plancould be an option also. I get anestimated subtreecostof 0.3253 for the first stored procedure, and 0.3079 for the second one. Can I say the second stored procedure is 6% faster (=0.3253/0.3079) ?Using "Reads" field from SQL Server Profiler?
So how can I say that the second stored procedure is x% faster than the first procedure, no matter the execution conditions (the workload of the server, the server where these stored procedures are executed, etc)?
If it is not possible, how can I prove the second stored procedure has a better execution time than the first stored procedure?
