I have two tables.
TEST1
TEST_KEY numeric(19,0) IDENTITY,
TEST_DESC varchar(20)
TEST2
TEST_KEY BIGINT NOT NULL
TEST_NAME varchar(50)
I am trying to use SQL Analysis Server to create a relationship between those two tables but I get an error that the data types are different. Is there a setting to let SQL Server know that they are similar and to allow the relationship to be built?
Start Free Trial