-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels

Description
1.) Please add the feature to allow the 'cost' to be logged when outputting sp_blitzcache to a table.
2.) When i run the following query:
exec sp_blitzcache @top = 10, @sortorder='cpu'
There is a cost column displayed in the results ... However when i log the results to a table the column is not there :
exec sp_blitzcache @top = 10, @sortorder='cpu', @outputdatabasename = 'DBA', @outputschemaname = 'dbo', @outputtablename = 'tblBlitzCache_20161123'
select * from dba.dbo.tblBlitzCache_20161123
3.) When the results are logged to a table it would be great if the 'cost' could also be included.