Click here to Skip to main content
15,901,853 members
Home / Discussions / C#
   

C#

 
JokeRe: Creating a new user Pin
Not Active1-Dec-06 2:36
mentorNot Active1-Dec-06 2:36 
QuestionLoading 500000 rows in to a datatable Pin
chandler8330-Nov-06 17:47
chandler8330-Nov-06 17:47 
AnswerRe: Loading 500000 rows in to a datatable Pin
Not Active30-Nov-06 19:30
mentorNot Active30-Nov-06 19:30 
GeneralRe: Loading 500000 rows in to a datatable Pin
chandler8330-Nov-06 19:35
chandler8330-Nov-06 19:35 
GeneralRe: Loading 500000 rows in to a datatable Pin
Not Active30-Nov-06 20:03
mentorNot Active30-Nov-06 20:03 
GeneralRe: Loading 500000 rows in to a datatable Pin
Christian Graus30-Nov-06 22:27
protectorChristian Graus30-Nov-06 22:27 
AnswerRe: Loading 500000 rows in to a datatable Pin
Bassam Saoud30-Nov-06 19:35
Bassam Saoud30-Nov-06 19:35 
AnswerRe: Loading 500000 rows in to a datatable Pin
V.30-Nov-06 20:46
professionalV.30-Nov-06 20:46 
I had to update/insert a couple of 1000's records once. What I did was concatenate the inserts (delimit with ";") and fire it up to the database at once...
eg.
"INSERT INTO YOURTABLE (COLNAMES) VALUES (COLVALUES);INSERT INTO YOURTABLE (COLNAMES) VALUES (COLVALUES);...;INSERT INTO YOURTABLE (COLNAMES) VALUES (COLVALUES);"

In your case don't do it at once, but in blocks.

Hope this helps.


V.
No hurries, no worries

QuestionRunning asmx without iis Pin
pkt3030-Nov-06 17:42
pkt3030-Nov-06 17:42 
AnswerRe: Running asmx without iis Pin
Christian Graus30-Nov-06 18:02
protectorChristian Graus30-Nov-06 18:02 
QuestionAnother Thread Question (Dumb) Pin
Tristan Rhodes30-Nov-06 13:12
Tristan Rhodes30-Nov-06 13:12 
AnswerRe: Another Thread Question (Dumb) Pin
S. Senthil Kumar30-Nov-06 23:18
S. Senthil Kumar30-Nov-06 23:18 
QuestionQuestion Pin
tamerana200430-Nov-06 11:06
tamerana200430-Nov-06 11:06 
AnswerRe: Question Pin
Christian Graus30-Nov-06 11:18
protectorChristian Graus30-Nov-06 11:18 
QuestionAsking about the best way to place huge images in a ListView ? Pin
Marcos Hernandez30-Nov-06 10:11
Marcos Hernandez30-Nov-06 10:11 
AnswerRe: Asking about the best way to place huge images in a ListView ? Pin
Christian Graus30-Nov-06 11:18
protectorChristian Graus30-Nov-06 11:18 
GeneralRe: Asking about the best way to place huge images in a ListView ? Pin
Marcos Hernandez30-Nov-06 19:47
Marcos Hernandez30-Nov-06 19:47 
QuestionFunction that never returns Pin
Vega0230-Nov-06 8:46
Vega0230-Nov-06 8:46 
AnswerRe: Function that never returns Pin
Ed.Poore30-Nov-06 8:48
Ed.Poore30-Nov-06 8:48 
GeneralRe: Function that never returns Pin
Vega0230-Nov-06 9:01
Vega0230-Nov-06 9:01 
GeneralRe: Function that never returns Pin
Dave Kreskowiak30-Nov-06 9:11
mveDave Kreskowiak30-Nov-06 9:11 
GeneralRe: Function that never returns Pin
led mike30-Nov-06 11:58
led mike30-Nov-06 11:58 
GeneralRe: Function that never returns Pin
Vega0230-Nov-06 16:50
Vega0230-Nov-06 16:50 
GeneralRe: Function that never returns Pin
Ed.Poore30-Nov-06 12:06
Ed.Poore30-Nov-06 12:06 
AnswerRe: Function that never returns Pin
Pete O'Hanlon30-Nov-06 9:00
mvePete O'Hanlon30-Nov-06 9:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.