Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
456 views

Bulk Parameterized Inserts

I'm trying to switch some hard-coded queries to use parameterized inputs, but I've run into a problem: How do you format the input for parameterized bulk inserts? Currently, the code looks like ...
3
votes
4answers
5k views

efficient bulk update rails database

I'm trying to build a rake utility that will update my database every so often. This is the code I have so far: namespace :utils do # utils:update_ip # Downloads the file frim <url> to ...
3
votes
5answers
767 views

Bulk insert, asp.net

I have a need to take in a list of ID numbers corresponding to a member. Their can be anywhere from 10 to 10,000 being processed at any given time. I have no problem collecting the data, parsing the ...
2
votes
5answers
434 views

Add primary key to a table with many records

I have a table in SQL Server 2005 containing 10000054 records; these records are inserted through a bulk insert operation. The table does not contain a primary key and I want to have one. If I try to ...
2
votes
3answers
720 views

SQL Server 2005 bulk insert binary types

I have a table in the following format: smallint, binary(10), smallint, smallint, varbinary(max) I also have a csv file generated from the data in the table by one of our processes where binary ...
2
votes
2answers
3k views

What is the recommended approach for Bulk Insert/Update in ASP.NET Gridview?

What best practice or strategy would you use to enable bulk insert/update in an asp.net gridview control with paging enabled? Say for e.g. you have about 10000 records and this data gets populated ...
1
vote
0answers
46 views

recording a picture in database with sql server and php

Is there my problem: I have a picture recorded in database with this method: UPDATE myTable SET pictureData = (SELECT * FROM OPENROWSET(BULK 'myFileAdress.jpeg', SINGLE_BLOB)AS x ) WHERE … I ...
0
votes
0answers
48 views

Bulk insert using Dataset with more than one datatable using Enterprise library

I have a dataset populated with data from more than 1 table using the inner join query in the ExecuteDataSet method. Now, i want to insert rows in all these tables and update the dataset back to the ...
0
votes
1answer
130 views

Skipped errored rows in bulk insert

Is there a way to do a bulk insert in Sql Server where rows with errors are skipped rather than the whole process failing? I don't mean just keeping those rows inserted prior to the error; I mean ...
0
votes
1answer
493 views

sp_tableoption in SQL Server

I want to know and pros and cons of setting sp_tableoption of "table lock on bulk load" for SQL Server 2005/2008? My scenario is, I have 3 threads working on database, one query thread, one bulk ...
0
votes
1answer
1k views

What bcp format file that I'm gonna used to insert 59 columns?

First Observation, limitation with this BCP format file Data File: (Continuous up to three lines) 1;a;b;c;d;e;f;; 2;d;e;f;g;h;i;; 3;g;h;i;j;k;l;; 4;j;k;l;m;n;o;; 5;m;n;o;p;q;r;; 6;p;q;r;s;t;u;;What ...