Declaring Local SQL Variable for UID Field
If the data check declares a local SQL variable for a UID field, it must be of type [uniqueidentifier], instead of decimal (18, 0).
For example:
DECLARE @UID decimal (18, 0)
Changes to:
DECLARE @UID [uniqueidentifier]
Related Topics
Data Checks