diff --git a/lib/NGCP/BulkProcessor/SqlConnectors/SQLServerDB.pm b/lib/NGCP/BulkProcessor/SqlConnectors/SQLServerDB.pm index 4d6bf0a..2664ef6 100644 --- a/lib/NGCP/BulkProcessor/SqlConnectors/SQLServerDB.pm +++ b/lib/NGCP/BulkProcessor/SqlConnectors/SQLServerDB.pm @@ -252,6 +252,8 @@ sub db_connect { if (length($transaction_isolation_level) > 0) { $self->db_do('SET TRANSACTION ISOLATION LEVEL ' . $transaction_isolation_level); } + $self->db_do('SET ANSI_WARNINGS ON'); + $self->db_do('SET ANSI_NULLS ON'); dbinfo($self,'connected',getlogger(__PACKAGE__));