Created
June 25, 2020 21:04
-
-
Save akehir/4767641353aa3e783860851d5bc23295 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* prod */ | |
TRUNCATE TABLE [SIX_SOC_Calculator].[dbo].[Options]; | |
DELETE FROM [SIX_SOC_Calculator].[dbo].[Settings] | |
DBCC CHECKIDENT ('SIX_SOC_Calculator.dbo.Products',RESEED, 0); | |
DELETE FROM [SIX_SOC_Calculator].[dbo].[Products] | |
DBCC CHECKIDENT ('SIX_SOC_Calculator.dbo.Settings',RESEED, 0); | |
/* dev */ | |
TRUNCATE TABLE SIX_SOC_Calculator_DEV.[dbo].[Options]; | |
DELETE FROM SIX_SOC_Calculator_DEV.[dbo].[Settings] | |
DBCC CHECKIDENT ('SIX_SOC_Calculator_DEV.dbo.Products',RESEED, 0); | |
DELETE FROM SIX_SOC_Calculator_DEV.[dbo].[Products] | |
DBCC CHECKIDENT ('SIX_SOC_Calculator_DEV.dbo.Settings',RESEED, 0); |
Author
akehir
commented
Sep 13, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment