Click here to Skip to main content
15,891,184 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Multithreading Pin
Muhammad Fahim Baloch17-Apr-09 1:26
Muhammad Fahim Baloch17-Apr-09 1:26 
GeneralRe: Multithreading Pin
Johan Hakkesteegt17-Apr-09 2:04
Johan Hakkesteegt17-Apr-09 2:04 
GeneralRe: Multithreading [modified] Pin
Jay Royall17-Apr-09 2:09
Jay Royall17-Apr-09 2:09 
GeneralRe: Multithreading Pin
Dave Kreskowiak17-Apr-09 3:26
mveDave Kreskowiak17-Apr-09 3:26 
GeneralRe: Multithreading Pin
Jay Royall17-Apr-09 3:30
Jay Royall17-Apr-09 3:30 
GeneralRe: Multithreading Pin
Dave Kreskowiak17-Apr-09 3:34
mveDave Kreskowiak17-Apr-09 3:34 
GeneralRe: Multithreading Pin
Jay Royall17-Apr-09 3:38
Jay Royall17-Apr-09 3:38 
GeneralRe: Multithreading Pin
Dave Kreskowiak17-Apr-09 3:33
mveDave Kreskowiak17-Apr-09 3:33 
You're not getting it. The SQL Server is a better place to do this. You won't be wasting a ton of time transferring that much data TWICE acrossed the network to the PC doing the processing, plus, multi-threading will only buy you a performance benefit if the PC has multiple processors, or multiple cores. You can't start, say, 10 threads on a single core machine and expect it to go 10 times faster. It doesn't work that way. Starting more threads to process data than there are cores in the machine is a complete waste of time. In a single core machine, the processor can only execute one thread at a time, pausing all other threads until it can get around to each of them.


A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007, 2008




AnswerRe: Multithreading Pin
Chinners17-Apr-09 1:45
Chinners17-Apr-09 1:45 
GeneralRe: Multithreading Pin
Jon_Boy17-Apr-09 3:57
Jon_Boy17-Apr-09 3:57 
Questionwhat values should I use for my datatable? Pin
rajulama16-Apr-09 20:30
rajulama16-Apr-09 20:30 
AnswerRe: what values should I use for my datatable? Pin
Johan Hakkesteegt16-Apr-09 21:06
Johan Hakkesteegt16-Apr-09 21:06 
GeneralRe: what values should I use for my datatable? Pin
rajulama16-Apr-09 21:11
rajulama16-Apr-09 21:11 
GeneralRe: what values should I use for my datatable? Pin
Johan Hakkesteegt16-Apr-09 21:22
Johan Hakkesteegt16-Apr-09 21:22 
GeneralRe: what values should I use for my datatable? Pin
rajulama16-Apr-09 21:30
rajulama16-Apr-09 21:30 
GeneralRe: what values should I use for my datatable? Pin
Johan Hakkesteegt16-Apr-09 21:57
Johan Hakkesteegt16-Apr-09 21:57 
GeneralRe: what values should I use for my datatable? Pin
rajulama16-Apr-09 22:13
rajulama16-Apr-09 22:13 
GeneralRe: what values should I use for my datatable? Pin
Johan Hakkesteegt16-Apr-09 22:17
Johan Hakkesteegt16-Apr-09 22:17 
GeneralRe: what values should I use for my datatable? Pin
rajulama16-Apr-09 22:33
rajulama16-Apr-09 22:33 
GeneralRe: what values should I use for my datatable? Pin
Johan Hakkesteegt16-Apr-09 22:44
Johan Hakkesteegt16-Apr-09 22:44 
GeneralRe: what values should I use for my datatable? Pin
rajulama16-Apr-09 22:57
rajulama16-Apr-09 22:57 
GeneralRe: what values should I use for my datatable? Pin
Johan Hakkesteegt16-Apr-09 23:18
Johan Hakkesteegt16-Apr-09 23:18 
GeneralRe: what values should I use for my datatable? Pin
rajulama16-Apr-09 23:30
rajulama16-Apr-09 23:30 
GeneralRe: what values should I use for my datatable? Pin
rajulama16-Apr-09 23:43
rajulama16-Apr-09 23:43 
GeneralRe: what values should I use for my datatable? Pin
Jay Royall17-Apr-09 0:46
Jay Royall17-Apr-09 0:46 

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.