Skip to content

Commit

Permalink
0006391: Added parameter to allow null values to remain null when loa…
Browse files Browse the repository at this point in the history
…ding into columns with default values using the SQL Server bcp bulk loader
  • Loading branch information
evan-miller-jumpmind committed May 6, 2024
1 parent af294aa commit 6c5e035
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ private ParameterConstants() {
public final static String MSSQL_BULK_LOAD_FIELD_TERMINATOR = "mssql.bulk.load.field.terminator";
public final static String MSSQL_BULK_LOAD_USE_BCP = "mssql.bulk.load.use.bcp";
public final static String MSSQL_BULK_LOAD_BCP_CMD = "mssql.bulk.load.bcp.cmd";
public final static String MSSQL_BULK_LOAD_BCP_KEEP_NULL_VALUES = "mssql.bulk.load.bcp.keep.null.values";
public final static String MSSQL_USE_SNAPSHOT_ISOLATION = "mssql.use.snapshot.isolation";
public final static String DBDIALECT_SYBASE_ASE_CONVERT_UNITYPES_FOR_SYNC = "sybase.ase.convert.unitypes.for.sync";
public final static String SYBASE_ROW_LEVEL_LOCKS_ONLY = "sybase.allow.only.row.level.locks.on.runtime.tables";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2718,6 +2718,13 @@ mssql.bulk.load.use.bcp=false
# Tags: other
mssql.bulk.load.bcp.cmd=

# Specifies if null values should remain null when using the SQL Server
# bcp bulk loader to load into nullable columns that have default values.
#
# DatabaseOverridable: true
# Tags: other
# Type: boolean
mssql.bulk.load.bcp.keep.null.values=false

# Specifies if snapshot isolation should be automatically turned on.
#
Expand Down

0 comments on commit 6c5e035

Please sign in to comment.