Options

SQL Daca compare comparison keys [Not set]

pnovack84pnovack84 Posts: 1 New member
edited December 12, 2017 12:51PM in SQL Comparison SDK
Hi,
I'm comparing 2 DBs created with same schema and as a result I get almost 40% of tables without "Comparison key" set.

1) What could be the possible reason? Example table definition with issue is like:
CREATE TABLE [dbo].[R_T](
[R_T_ID] [INT] IDENTITY(1,1) NOT NULL,
[NAME] [VARCHAR](200) NOT NULL,
[USER_NAME] [NVARCHAR](255) NOT NULL,
[CREATED_TIME] [DATETIME] NOT NULL,
[PERMISSIONS] [VARCHAR](2000) NOT NULL,
[TEMPLATETYPE] [VARCHAR](50) NOT NULL,
[DEPLOYMENT_ID] [VARCHAR](256) NULL,
[CURRENT_FLAG] [BIT] NOT NULL,
CONSTRAINT [PK_R_T] PRIMARY KEY CLUSTERED
(......

2) I used to set the Comp key manually to overcome the strange issue, but now I need to compare DB to Backup and it looks like application forgets the custom value I set manually so its not usable anymore:
"You cannot specify custom comparison keys if you are using a backup as a data source; however, you can select an alternative unique index or unique constraint."
How can I set/use this "alternative unique index or unique constraint." is scenario DB vs Backup?

Tagged:

Answers

  • Options
    AlexMBanksAlexMBanks Posts: 15 Bronze 2
    I have this issue as well - it makes Data Compare annoying at best and unusable at worst. Comparing two identical databases (built from the same source!) and I get a host of issues.

    It often doesn't use the PK for the comparison by default (it doesn't say why) or I have to manually add the individual columns for each table. Even then, for some columns it will sometimes say 'the column data types prevent this mapping being used as part of custom comparison key', despite the fact that
    a) the same column for the comparison database is accepted without issue
    b) SQL Compare registers the tables as identical.

    The screenshot below shows this issue.

    When the applications maps things correctly it's invaluable, but I often dread having to use it because of this. I'm hoping this is just me missing some config option or doing something wrong.
  • Options
    RichardLRichardL Posts: 417 Gold 4
    Hi @AlexMBanks

    Thanks for your post. 

    If you have a support contract and would like a support engineer to investigate your issue then please send us a ticket 

    Kind regards

    Richard Lynch. 
    Customer Support
    Redgate Software
  • Options
    AlexMBanksAlexMBanks Posts: 15 Bronze 2
    RichardL said:
    Hi @AlexMBanks

    Thanks for your post. 

    If you have a support contract and would like a support engineer to investigate your issue then please send us a ticket 

    Kind regards

    Richard Lynch. 
    Thanks for the suggestion, @RichardL. I found the answer to my issue in a different discussion here:
    https://forum.red-gate.com/discussion/comment/152306#Comment_152306
Sign In or Register to comment.