GEBOS_Cost_Center.sql 221 B

12345678
  1. DELETE T1 FROM [dbo].[GEBOS_Cost_Center] T1
  2. INNER JOIN [temp].[GEBOS_Cost_Center] T2
  3. ON T1.[CostCenterNr] = T2.[CostCenterNr]
  4. GO
  5. INSERT INTO [dbo].[GEBOS_Cost_Center]
  6. SELECT T1.* FROM [temp].[GEBOS_Cost_Center] T1
  7. GO