sql >> Databasteknik >  >> RDS >> Sqlserver

Stäng av begränsningar tillfälligt (MS SQL)

-- Disable the constraints on a table called tableName:
ALTER TABLE tableName NOCHECK CONSTRAINT ALL

-- Re-enable the constraints on a table called tableName:
ALTER TABLE tableName WITH CHECK CHECK CONSTRAINT ALL
---------------------------------------------------------

-- Disable constraints for all tables in the database:
EXEC sp_msforeachtable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'

-- Re-enable constraints for all tables in the database:
EXEC sp_msforeachtable 'ALTER TABLE ? WITH CHECK CHECK CONSTRAINT ALL'
---------------------------------------------------------


  1. Lista alla index i en SQLite-databas

  2. Hur man undviker att använda + i versionsnummer med SQLiteAssetHelper

  3. ROLLBACK händelseutlösare i postgresql

  4. Hur man beviljar alla rättigheter till rootanvändare i MySQL 8.0