Hi All,
I have a new small DB and there is table know as "1103_System", I have another import table know as Sheet1. Sheet1 is used to cleanse data then my plan is to append this data onto 1103_System.
Most of the data appends without fail with the exception of a foreign key "HierarchyID" on table "1103_System". I have tried and update query of the foreign key and no result - the foreign key already exists
. I other tables where I will need to append data, perhaps someone has a solution.
I tried this and somehow it added a couple hundred blank rows onto the 1103_System -
UPDATE Sheet1, 1103_System SET Sheet1.HierarchyID = [1103_System].[HierarchyID];
Thanks for reading,
Stay Safe
GC1
I have a new small DB and there is table know as "1103_System", I have another import table know as Sheet1. Sheet1 is used to cleanse data then my plan is to append this data onto 1103_System.
Most of the data appends without fail with the exception of a foreign key "HierarchyID" on table "1103_System". I have tried and update query of the foreign key and no result - the foreign key already exists

I tried this and somehow it added a couple hundred blank rows onto the 1103_System -
UPDATE Sheet1, 1103_System SET Sheet1.HierarchyID = [1103_System].[HierarchyID];
Thanks for reading,
Stay Safe
GC1