Top "Bulkinsert" questions

Act of inserting multiple rows into a database simultaneously.

Bulk Insert to Oracle using .NET

What is the fastest way to do Bulk insert to Oracle using .NET? I need to transfer about 160K records …

.net sql oracle bulkinsert
How to Bulk Insert from XLSX file extension?

Can anyone advise how to bulk insert from .xlsx file? I tried the below query already: BULK INSERT #EVB FROM …

sql-server bulkinsert xlsx
How to BULK INSERT a file into a *temporary* table where the filename is a variable?

I have some code like this that I use to do a BULK INSERT of a data file into a …

sql sql-server tsql bulkinsert
How to write UTF-8 characters using bulk insert in SQL Server?

I am doing a BULK INSERT into sqlserver and it is not inserting UTF-8 characters into database properly. The data …

sql-server utf-8 sql-server-2008-r2 bulkinsert
Determine ROW that caused "unexpected end of file" error in BULK INSERT?

i am doing a bulk insert: DECLARE @row_terminator CHAR; SET @row_terminator = CHAR(10); -- or char(10) DECLARE @stmt NVARCHAR(2000); …

sql sql-server sql-server-2008 bulkinsert
Bulk load data conversion error (truncation)

I am getting this error Bulk load data conversion error (truncation) for row 1, column 12 (is_download) here is the csv...…

sql sql-server sql-server-2008 csv bulkinsert
How to insert multiple documents at once in MongoDB through Java

I am using MongoDB in my application and was needed to insert multiple documents inside a MongoDB collection . The version …

java mongodb bulkinsert mongodb-java
Cannot bulk load. The file "c:\data.txt" does not exist

I'm having a problem reading data from a text file into ms sql. I created a text file in my …

sql bulkinsert
Bulk insert in Java using prepared statements batch update

I am trying to fill a resultSet in Java with about 50,000 rows of 10 columns and then inserting them into another …

java resultset bulkinsert prepared-statement
SQL Server Bulk insert of CSV file with inconsistent quotes

Is it possible to BULK INSERT (SQL Server) a CSV file in which the fields are only OCCASSIONALLY surrounded by …

sql-server csv bulkinsert