Skip to content

Commit

Permalink
Merge pull request #2495 from BrentOzarULTD/2487_sp_BlitzCache_USERST…
Browse files Browse the repository at this point in the history
…ORE_TOKENPERM

#2487 sp_BlitzCache USERSTORE_TOKENPERM
  • Loading branch information
BrentOzar committed Jul 31, 2020
2 parents e55d475 + ad98379 commit 986f076
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sp_BlitzCache.sql
Expand Up @@ -5135,8 +5135,8 @@ EXEC sys.sp_executesql @user_perm_sql,
IF @common_version >= 11
BEGIN
SET @user_perm_sql = N'
SELECT @user_perm_gb = CASE WHEN (pages_kb / 128.0 / 1024.) >= 2.
THEN CONVERT(DECIMAL(38, 2), (pages_kb / 128.0 / 1024.))
SELECT @user_perm_gb = CASE WHEN (pages_kb / 1024.0 / 1024.) >= 2.
THEN CONVERT(DECIMAL(38, 2), (pages_kb / 1024.0 / 1024.))
ELSE 0
END
FROM sys.dm_os_memory_clerks
Expand Down

0 comments on commit 986f076

Please sign in to comment.