Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table pictured below that has a surrogate Key as the Primary Key, and also two columns that represent a parent child relationship. Currently, the Primary key is OfficerPeopleID. The Parent is MgrPeopleID, and the child is PeopleID.
I want to use the current Primary Key (OfficerPeopleID) as the new child, and create a new field that will be the new parent. By doing this, the child will now be a primary key, which is my goal. How do i populate the new parent field to create the same hierarchy structure as the current parent and child fields are doing? Thank you!

Dimension

share|improve this question
possible duplicate of Problems creating a Parent Child reference in SSAS – Diego Apr 28 '12 at 23:17
dont post duplicate questions. – Diego Apr 28 '12 at 23:18
That was a question of mine, which resulted in me learning this is the next step to fixing my problem. Thanks – John Apr 28 '12 at 23:18
The question is not a duplicate. It is my asking help for how to do the next step in resolving the issue i am having. – John Apr 28 '12 at 23:19

1 Answer

up vote 1 down vote accepted

Do it in your ETL...

UPDATE  a
SET     ParentOfficerPeopleID = (   SELECT  OfficerPeopleID 
                                    FROM    OfficerPeopleDim 
                                    WHERE   PeopleID = a.ManagerPeopleID)
FROM    OfficerPeopleDim AS a
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.