I have created Two tables
1]EmployeeTable
--------------------------
EmpID [ bigint] [PrimaryKey]
EmpName [ varchar(50)]
AccessLevelID [bigint ] [ Foreign Key]
2]AccessLevelTable
-----------------------------
AccessLevelID [ bigint ] [ PrimaryKey ]
AccessLevelName [varchar(50)]
Now i am creating relationship between these two tables.
I select relationship option for first table.
Then I added new relationship by selecting primary table field and foreign key table field.
Afterall when i am trying to save these changes I get one error
"The ALTER table Statement conflicted with foreign key constraint".
Can anyone help me as soon as possible.
Thanks in advance