The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
2k views

Get an IDataReader from a typed List

I have a List<MyObject> with a million elements. (It is actually a SubSonic Collection but it is not loaded from the database). I'm currently using SqlBulkCopy as follows: private string ...
12
votes
5answers
4k views

SqlBulkCopy and DataTables with Parent/Child Relation on Identity Column

We have a need to update several tables that have parent/child relationships based on an Identity primary-key in the parent table, which is referred to by one or more child tables as a foreign key. ...
8
votes
4answers
655 views

Fastest way to insert into a SQL Server table from .NET code?

What is the fastest way to do this: One table, no references that I cannot prefill (i.e. there is one reference key there, but i have all the data filled in) LOTS of data. We talk of hundreds of ...
7
votes
3answers
7k views

Error inserting data using SqlBulkCopy

I'm trying to batch insert data into SQL 2008 using SqlBulkCopy. Here is my table: IF OBJECT_ID(N'statement', N'U') IS NOT NULL DROP TABLE [statement] GO CREATE TABLE [statement]( [ID] INT ...
6
votes
1answer
189 views

How to efficiently invoke table-valued parameters from Ado.Net

I need to efficiently submit tens of thousands of numbers and dates from Ado.Net to SQl Server 2008. Back in the days, before SQL 2008, I was packing those numbers in an image, which was quite fast. ...
6
votes
1answer
621 views

SQLBulkCopy or Bulk Insert

I have about 6500 files for a sum of about 17 GB of data, and this is the first time that I've had to move what I would call a large amount of data. The data is on a network drive, but the individual ...
6
votes
4answers
5k views

SqlBulkCopy Not Working

I have a dataSet populated from Excel Sheet. I wanted to use SQLBulk Copy to Insert Records in Lead_Hdr table where LeadId is PK. I am having following error while executing this code The given ...
5
votes
1answer
290 views

what does sp_tablecollations_100 do?

Just before a bulkinsert (SqlBulkCopy) I see a excec sp_tablecollations_100 N'.tb_tablename' in the profiler What does this do? Is it a sign of a problem or is it normal? Thanks for your help ...
5
votes
3answers
734 views

Is there a way to use SqlBulkCopy without converting the data to a DataTable?

Is there a way to use SqlBulkCopy without converting the data to a DataTable? I have a list of objects (List) in RAM and I really don't want to use more memory to create the DataTable. Could it be ...
4
votes
3answers
838 views

SqlBulkCopy Insert with Identity Column

I am using the SqlBulkCopy object to insert a couple million generated rows into a database. The only problem is that the table I am inserting to has an identity column. I have tried setting the ...
4
votes
6answers
2k views

How to prevent duplicate records being inserted with SqlBulkCopy when there is no primary key

I receive a daily XML file that contains thousands of records, each being a business transaction that I need to store in an internal database for use in reporting and billing. I was under the ...
4
votes
1answer
545 views

How to get identities of inserted data records using SQL bulk copy

I have an ADO.NET DataTable with about 100,000 records. In this table there is a column xyID which has no values in it, because the column is an auto-generated IDENTITY in my SQL Server database. I ...
4
votes
1answer
373 views

Sqlbulkcopy doesn't seem to work for me

I have created a datatable and trying to insert that datatable through SqlBulkCopy but somehow it doesn't seem to work for me.... I got the error, The given value of type DateTime from the data ...
4
votes
1answer
218 views

add column while copying data in sql

I'm using SqlBulkCopy to bulk insert some records from one table into another table. The query is using a SqlDataReader to get the data. The one difference that matters (besides column order which ...
4
votes
5answers
2k views

sqlbulkcopy using sql CE

Is it possible to use SqlBulkcopy with Sql Compact Edition e.g. (*.sdf) files? I know it works with SQL Server 200 Up, but wanted to check CE compatibility. If it doesnt does anyone else know the ...
4
votes
2answers
1k views

SQLBulkCopy Row Count When Complete

I am using SQLBulkCopy to move large amounts of data. I implemented the notification event to notify me every time a certain number of rows have been processed, but the OnSqlRowsCopied event does not ...
4
votes
2answers
1k views

What's the drawback of SqlBulkCopy

I have done some research for "The bast way to insert huge data into DB with C#" then a lot of people just suggested me using SqlBulkCopy. After I tried it out and it really amazed me. Undoubtedly, ...
3
votes
1answer
144 views

EF Competing SaveChanges() Calls

I am building a batch processing system. Batches of Units come in quantities from 20-1000. Each Unit is essentially a heirachy of models (one main model and many child models). My task involves ...
3
votes
2answers
467 views

SQLBulkCopy Throws InvalidOperationException Nullable Ints

I have a DataTable that I am attempting to upload, but I run into the following exception: "The given value of type String from the data source cannot be converted to type int of the specified target ...
3
votes
2answers
593 views

Timeout expired with SqlBulkCopy

I'm using SqlBulkCopy to restore tables from xml backups. One of the table backup is ~200MB large and has a lot of records. I'm having error: Timeout expired. The timeout period elapsed prior to ...
3
votes
2answers
496 views

SqlBulkCopy throws System.FormatException when running WriteToServer(DataTable)

Currently I'm writing a method to read data from a CSV file and import to a SQL table. DataTable dt = new DataTable(); String line = null; int i = 0; while ((line = ...
3
votes
1answer
746 views

How do I make SqlBulkCopy work with MS Enterprise Library?

I've got some code which uses SqlBulkCopy. And now we're refactoring our code to use Enterprise Library database functions instead of standard ones. The question is how can I instantiate SqlBulkCopy? ...
3
votes
3answers
430 views

Why this strange behavior of sqlbulkcopy in a asp.net website running under iis?

I'm using SqlClient.SqlBulkCopy to try and bulk copy a csv file into a database. I am getting the following error after calling the ..WriteToServer method. "The given value of type String from ...
3
votes
2answers
749 views

SqlBulkCopy and Entity Framework

My current project consists of 3 standard layers: data, business, and presentation. I would like to use data entities for all my data access needs. Part of the functionality of the app will that it ...
3
votes
3answers
1k views

How to insert a DataTable with existing Key to a SQL Server Table

I am working with VB.NET.. i have a DataTable called "QUESTION", containing 3 fields: QuestionNumber (unique integer key) QuestionText QuestionType In my SQL Server database I created a Table ...
3
votes
1answer
3k views

How to add gridview rows to a datatable?

I have a gridview which will contain some 'n' number of rows.... Now i want to add all rows of the gridview to a datatable which will be used for bulkcopy operation... I have found this ...
3
votes
1answer
246 views

Rollback for bulk copy

I have an application that make a copy from my database by bulk copy class in c#. Can I rollback the bulk copy action in sql server when occur an exception?
3
votes
2answers
2k views

SqlBulkCopy.WriteToServer not reliably obeying BulkCopyTimeout

I need to count sequential timeout exceptions from SqlBulkCopy. To test this, I use an external app to start a transaction & lock up the target table. Only on the first call does SqlBulkCopy ...
3
votes
1answer
837 views

Processing a flat file in chunks using multiple threads using producer/consumer pattern and SqlBulkCopy into SQL Server DB

I hope you will bear with me. I wanted to provide as much information as I can. The main problem is how to create a structure (like a stack) that will be used by multiple threads that will pop a ...
3
votes
2answers
2k views

Using SQLBulkCopy to Insert/Update database

I have a datatable with the records.I'm inserting records into Sql table using SqlBulkCopy.It works fine.Next time when get the datatable with same records with few changed values SqlBulkCopy is ...
3
votes
3answers
927 views

SqlBulkCopy into table with composite primary key

I'm trying to use SqlBulkCopy to insert new rows into my DB table by manually populating a DataTable w/in my application. This works fine for all tables except the table that has a composite primary ...
3
votes
2answers
3k views

SqlBulkInsert - How to set Fire Triggers, Check Constraints?

I'm performing a bulk insert with an ADO.NET 2.0 SqlBulkCopy object from a C# method into a MS SQL 2005 database, using a database user with limited permissions. When I try to run the operation, I ...
2
votes
3answers
265 views

writing xml data to sql server using sqlbulkcopy in C# asp.net

I have two xml files on m system called customers.xml and customerdetails.xml. I am attempting to write this data directly to an sql database I created in asp.net. All of my coding is in C#. The sql ...
2
votes
1answer
84 views

SqlBulkCopy to upload Excel

If Im using SqlBulkCopy in .net 4.0 on a sql 2008 R2 database to upload excel data to the database, do I actually need Excel on the box hosting the site for this to work? The reason I ask is I have a ...
2
votes
3answers
267 views

How to insert a constant value into a column using ASP.Net SqlBulkCopy

In the below code, I am trying insert the records from excel to Database table, but an additional column is not passed through the excel, which has to be populated with a constant value(foreach loop ...
2
votes
2answers
579 views

SQL Bulk insert with parent/child relationships, is order preserved?

Similar to these other questions noted below, I have two tables with the structure: create table parent ( recno int identity(1,1) primary key not null, groupCode int, parentdata varchar(80) ...
2
votes
2answers
320 views

How to automatically truncate string when do bulk insert?

I want to insert many rows (constructed from Entity Framework objects) to SQL Server. The problem is, some of string properties have length exceeded length of column in database, which causes an ...
2
votes
3answers
177 views

Bulk Copy from small table to larger one in SQL Server 2005

I'm a newbie in SQL Server and have the following dilemma: I have two tables with the same structure. Call it runningTbl and finalTbl. runningTbl contains about 600 000 to 1 million rows every 15 ...
2
votes
3answers
189 views

It is possible to use SqlBulkCopy to insert information into a view over 2 tables?

I am moving to use SqlBulkCopy to deal with large insertions into some databases. This has lead to great performance improvements for one db. However, another targeted db table is a view composing 2 ...
2
votes
5answers
181 views

Alternative to Delete Trigger for tracking deleted records

I've got a task to create a large data replication service that will provision our data warehouse. the source databases reside on other servers. So far, I've been able to implement the Update and ...
2
votes
2answers
225 views

Fast inserts; BulkCopy with relational data

I have a large amount of constantly incoming data (roughly 10,000 a minute, and growing) that I want to insert into a database as efficiently as possible. At the moment I'm using prepared insert ...
2
votes
3answers
764 views

C# Optimisation: Inserting 200 million rows into database

I have the following (simplified) code which I'd like to optimise for speed: long inputLen = 50000000; // 50 million DataTable dataTable = new DataTable(); DataRow dataRow; object[] objectRow; while ...
2
votes
1answer
126 views

Using SqlBulkCopy, how do I insert data into a table in a non-default database schema?

I need to insert data into a table in a schema named Staging using SqlBulkCopy. It appears the API only allows you to set the target table name by using the DestinationTableName property. How do I ...
2
votes
2answers
669 views

Can SqlBulkCopy create a table from a Sql selection

Can SqlBulkCopy create a table, kind of like a SELECT INTO?
2
votes
3answers
104 views

How to fix this stored procedure problem

I have 2 tables. The following are just a stripped down version of these tables. TableA Id <pk> incrementing Name varchar(50) TableB TableAId <pk> non incrementing Name varchar(50) Now ...
2
votes
1answer
355 views

Fast insert relational(normalized) data tables into SQL Server 2008 database

I'm trying to find a better and faster way to insert pretty massive amount of data(~50K rows) than the Linq that I'm using now. The data I'm trying to write to a local db is in a list of ORM mapped ...
2
votes
2answers
136 views

How to find offending column? Can't Convert from string to int32

I am using SqlBulkCopy. So I made a datatable and specifed it's columns then added rows to the datatable and then try to insert it. System.InvalidOperationException was unhandled by user code ...
2
votes
2answers
586 views

Possible to get PrimayKey IDs back after a SQL BulkCopy?

I am using C# and using SqlBulkCopy. I have a problem though. I need to do a mass insert into one table then another mass insert into another table. These 2 have a PK/FK relationship. Table A Field1 ...
2
votes
3answers
859 views

SqlBulkCopy slow as molasses

I'm looking for the fastest way to load bulk data via c#. I have this script that does the job but slow. I read testimonies that SqlBulkCopy is the fastest. 1000 records 2.5 seconds. files contain ...
2
votes
2answers
646 views

How to use SqlBulkCopy with nullable columns

I’m having an issue using SqlBulkCopy when nullable columns are involved. It sounds like SqlBulkCopy doesn't know how to deal with nullable columns and throws an illegal size error when it encounters ...

1 2 3 4