Ich möchte das nicht jedes mal googlen:
1 2 3 4 5 6 7 8 9 10 |
-- disable referential integrity check: EXEC sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL' GO EXEC sp_MSForEachTable 'DELETE FROM ?' GO -- re-enable referential integrity check: EXEC sp_MSForEachTable 'ALTER TABLE ? WITH CHECK CHECK CONSTRAINT ALL' GO |
In dem Zusammenhang: Flyway initOnMigrate in Play Applikationen:
1 |
flyway.initOnMigrate=true |