lostapathy/db_subsetter

View on GitHub
lib/db_subsetter/dialect/ms_sql.rb

Summary

Maintainability
A
0 mins
Test Coverage
module DbSubsetter
  module Dialect
    # Dialect to subset to/from Microsoft SQL Server
    class MSSQL < Generic
      INSERT_BATCH_SIZE = 100

      def self.integrity_problems
        ActiveRecord::Base.connection.execute('EXEC sp_msforeachtable "DBCC CHECKCONSTRAINTS WITH ALL_CONSTRAINTS"')
      end
    end
  end
end