To enable bulk loading for SQL Server you need to add EnableBulkLoad=1 option in odbc.ini file. Below is the sample SQL Server entry in odbc.ini file that shows enabling bulk loading.
[EFFSIR]
Driver=/ODBC/lib/S0msss26.so
Description=EFFSIR
Address=117.132.256.67,1433
AnsiNPW=Yes
Database=CDKSP
LogonID=
Password=
QuotedId=No
EnableBulkLoad=1
EnableProcessLicensing=1
If you want to turn of Bulk Load then the entry should be:
[EFFSIR]
Driver=/ODBC/lib/S0msss26.so
Description=EFFSIR
Address=117.132.256.67,1433
AnsiNPW=Yes
Database=CDKSP
LogonID=
Password=
QuotedId=No
EnableProcessLicensing=1
[EFFSIR]
Driver=/ODBC/lib/S0msss26.so
Description=EFFSIR
Address=117.132.256.67,1433
AnsiNPW=Yes
Database=CDKSP
LogonID=
Password=
QuotedId=No
EnableBulkLoad=1
EnableProcessLicensing=1
If you want to turn of Bulk Load then the entry should be:
[EFFSIR]
Driver=/ODBC/lib/S0msss26.so
Description=EFFSIR
Address=117.132.256.67,1433
AnsiNPW=Yes
Database=CDKSP
LogonID=
Password=
QuotedId=No
EnableProcessLicensing=1
You no need to specify the option.
Comments
Post a Comment