You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run this command
[dbo].[sp_blitzlock] @databasename ='databasename'
I got this error: Msg 8114, Level 16, State 5, Procedure sp_BlitzLock, Line 1762 [Batch Start Line 2] Error converting data type nvarchar to bigint.
This line dow.database_id = @DatabaseName OR @DatabaseName IS NULL in sp_BlitzLock causes the error. Must be changed to dow.database_id = @DatabaseId OR @DatabaseName IS NULL.
The text was updated successfully, but these errors were encountered:
Welcome to Github! When you file an issue, you wanna make sure there's not already an issue about what you're describing. In this case, it's here: #3201
When I run this command
[dbo].[sp_blitzlock] @databasename ='databasename'
I got this error:
Msg 8114, Level 16, State 5, Procedure sp_BlitzLock, Line 1762 [Batch Start Line 2] Error converting data type nvarchar to bigint.
This line
dow.database_id = @DatabaseName OR @DatabaseName IS NULL
in sp_BlitzLock causes the error. Must be changed todow.database_id = @DatabaseId OR @DatabaseName IS NULL
.The text was updated successfully, but these errors were encountered: