Welcome to 2PTTechnology Sign in | Join
in Search

compare case sensitive data

Last post 03-28-2008, 2:11 PM by twaligora. 0 replies.
Sort Posts: Previous Next
  •  03-28-2008, 2:11 PM 148

    compare case sensitive data

    results between two databases are same because it doesnt distinguish between caps and lower case example: ID '123a' is same as '123A'

    So we need to look at the results while in binary.

    select invqty.prdnum as Prd,

    from

    dbo.invqty invqty

    inner join @TempProd Tmp on cast(Tmp.PKey as varbinary(10)) = cast(invqty.prdtky as varbinary(10))

View as RSS news feed in XML
Powered by Community Server, by Telligent Systems