begin try begin transaction declare @ParentIdOffset int = ident_current('ParentTable') /*--- Create Temp Table, Calculating Parent IDs ---*/ /* This temp table will contain one row for each parent row to be created */ select ParentId = row_number() over (order by SomeField) + @ParentIdOffset /* other fields */ into #MyTempTable from /* tables */ /*--- Create Rows in Parent Table ---*/ set identity_insert dbo.ParentTable on insert into dbo.ParentTable ( Id /* other fields */ ) select Id = a.ParentId /* other fields */ from #MyTempTable a set identity_insert dbo.ParentTable off /*--- Create Rows in Child Table ---*/ insert into dbo.ChildTable ( ParentId /* other fields */ ) select ParentId = a.ParentId from #MyTempTable a /* join other tables as needed */ /* TODO: Change this to COMMIT! */ rollback transaction end try begin catch rollback transaction DECLARE @ErrorMessage NVARCHAR(4000), @ErrorNumber INT, @ErrorSeverity INT, @ErrorState INT, @ErrorLine INT, @ErrorProcedure NVARCHAR(200); -- Assign variables to error-handling functions that -- capture information for RAISERROR. SELECT @ErrorNumber = ERROR_NUMBER(), @ErrorSeverity = ERROR_SEVERITY(), @ErrorState = ERROR_STATE(), @ErrorLine = ERROR_LINE(), @ErrorProcedure = ISNULL(ERROR_PROCEDURE(), '-'); -- Build the message string that will contain original -- error information. SELECT @ErrorMessage = N'Error %d, Level %d, State %d, Procedure %s, Line %d, ' + 'Message: '+ ERROR_MESSAGE(); -- Raise an error: msg_str parameter of RAISERROR will contain -- the original error information. RAISERROR (@ErrorMessage, @ErrorSeverity, 1, @ErrorNumber, -- parameter: original error number. @ErrorSeverity, -- parameter: original error severity. @ErrorState, -- parameter: original error state. @ErrorProcedure, -- parameter: original error procedure name. @ErrorLine -- parameter: original error line number. ); end catch
ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam. Except where noted, all contents Copyright © 1999-2024, Patrick Jasinski.