sql >> データベース >  >> RDS >> Sqlserver

制約を一時的にオフにする(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. 環境変数を設定せずにMacOS/XにOracleInstantclientをインストールしますか?

    2. .NETを使用したOracleへの一括挿入

    3. Postgresに向けた取り組み-XL9.5

    4. SQLの主キー:主キーの操作について知っておくべきことすべて