Click here to Skip to main content
15,899,026 members
Home / Discussions / C#
   

C#

 
QuestionHow can I get the Ip address list that a dhcp server leased using C#? Pin
Member 162442720-Oct-05 12:07
Member 162442720-Oct-05 12:07 
Questionweb browser plug in ? Pin
Christian Graus20-Oct-05 12:05
protectorChristian Graus20-Oct-05 12:05 
QuestionLorge volume ...Can .NET Handle ? Pin
dvsr20-Oct-05 11:47
dvsr20-Oct-05 11:47 
AnswerRe: on .net Pin
Christian Graus20-Oct-05 12:02
protectorChristian Graus20-Oct-05 12:02 
GeneralRe: on .net Pin
dvsr20-Oct-05 12:10
dvsr20-Oct-05 12:10 
GeneralRe: on .net Pin
Christian Graus20-Oct-05 15:14
protectorChristian Graus20-Oct-05 15:14 
AnswerRe: Lorge volume ...Can .NET Handle ? Pin
A.A.20-Oct-05 15:07
A.A.20-Oct-05 15:07 
AnswerRe: Lorge volume ...Can .NET Handle ? Pin
Dave Kreskowiak20-Oct-05 22:43
mveDave Kreskowiak20-Oct-05 22:43 
It's best to leave the processing in the database itself. Retrieving/Sending 30M records (you have to put them back ater the processing, correct?) will (usually) needlessly beat the crap out of the network your SQL server is attached to.

Part of the job of a developer is to evaluate your processes and code and consider their impact on the resources around them. What is this servers SQL load? What about it's NIC? What is the impact of adding 30M transactions to those loads? (I mean either from your processing application or from doing it inside the SQL database!) Will your retrieval, processing, and upload spike the use of these resources so bad that normal traffic is negatively impacted? How long will this processing take using each method? ...?, ...?, ...?, ...?

The .NET Framework dataset object can handle as much data as you can fit in memory. Millions of records is not out of the question. The real question is if it's practical. Only you can say.


RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: Lorge volume ...Can .NET Handle ? Pin
dvsr21-Oct-05 3:34
dvsr21-Oct-05 3:34 
AnswerRe: Lorge volume ...Can .NET Handle ? Pin
Guffa21-Oct-05 3:16
Guffa21-Oct-05 3:16 
QuestionDefault parameters in C# method Pin
Yanshof20-Oct-05 11:04
Yanshof20-Oct-05 11:04 
AnswerRe: Default parameters in C# method Pin
Christian Graus20-Oct-05 12:03
protectorChristian Graus20-Oct-05 12:03 
GeneralRe: Default parameters in C# method Pin
Yanshof20-Oct-05 12:07
Yanshof20-Oct-05 12:07 
GeneralRe: Default parameters in C# method Pin
Christian Graus20-Oct-05 12:10
protectorChristian Graus20-Oct-05 12:10 
GeneralRe: Default parameters in C# method Pin
Yanshof20-Oct-05 12:36
Yanshof20-Oct-05 12:36 
GeneralRe: Default parameters in C# method Pin
Christian Graus20-Oct-05 12:49
protectorChristian Graus20-Oct-05 12:49 
GeneralRe: Default parameters in C# method Pin
PaulPrice23-Jul-07 9:50
PaulPrice23-Jul-07 9:50 
AnswerRe: Default parameters in C# method Pin
Ali Beirami21-Oct-05 3:00
Ali Beirami21-Oct-05 3:00 
QuestionCatastrophic Error Pin
NET_GEEK20-Oct-05 11:01
NET_GEEK20-Oct-05 11:01 
AnswerRe: Catastrophic Error Pin
Christian Graus20-Oct-05 12:03
protectorChristian Graus20-Oct-05 12:03 
GeneralRe: Catastrophic Error Pin
NET_GEEK20-Oct-05 17:59
NET_GEEK20-Oct-05 17:59 
GeneralRe: Catastrophic Error Pin
Christian Graus23-Oct-05 12:13
protectorChristian Graus23-Oct-05 12:13 
QuestionReading Registry Data Pin
TeamWild20-Oct-05 8:43
TeamWild20-Oct-05 8:43 
AnswerRe: Reading Registry Data Pin
Christian Graus20-Oct-05 10:40
protectorChristian Graus20-Oct-05 10:40 
GeneralRe: Reading Registry Data Pin
TeamWild20-Oct-05 23:14
TeamWild20-Oct-05 23:14 

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.