Update Due to Change in Database Schema to GUIDsUpdate Due to Change in Database Schema to GUIDs\Data ChecksData Checks\Declaring Local SQL Variable for UID Field

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]

Top of Page
Top of Page