Non è possibile acquisire l'identità generata nel CTE. Puoi comunque inserire tutte le righe nella tabella di destinazione con null
come ParentID
e quindi aggiorna ParentID
in una dichiarazione di aggiornamento separata. Per farlo puoi usare merge
e una tecnica descritta qui
.
-- Helper table to map new id's from source
-- against newly created id's in target
declare @IDs table
(
TargetID int,
SourceID int,
SourceParentID int
)
-- Use merge to capture generated id's
merge BillOfMaterials as T
using SourceTable as S
on 1 = 0
when not matched then
insert (SomeColumn) values(SomeColumn)
output inserted.BomId, S.BomID, S.ParentID into @IDs;
-- Update the parent id with the new id
update T
set ParentID = I2.TargetID
from BillOfMaterials as T
inner join @IDs as I1
on T.BomID = I1.TargetID
inner join @IDs as I2
on I1.SourceParentID = I2.SourceID
Ecco un esempio di lavoro completo su SE-Data