我目前正在将旧数据库中的旧数据迁移到架构已更改的新数据库中。
旧架构
Table Event
PK_EventID
View OldVideoConferenceParticiants
FK_EventID
FK_ParticipantID
新架构
Table Event
PK_EventID
FK_VideoConferenceID
Table VideoConference
PK_VideoConferenceID
Table VideoConferenceParticipants
PK_VideoConferenceParticipantID
FK_VideoConferenceID
我想做的是:
问题 我想我可能需要使用MERGE,但到目前为止我的所有尝试都是灾难性的。我也尝试过使用
INSERT ... OUPUT INSERTED.VideconferenceID
......但我无法做到。我需要以某种方式将EventID和VideoConferenceID并排放置,插入不允许我这样做。
有人可以给我一些如何完成上述#2的指导吗?