Click here to Skip to main content
15,912,205 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: Updating drop-downlist boxes corresponding to values selected in the other drop-down list Pin
fasttoshiba2-Feb-09 9:03
fasttoshiba2-Feb-09 9:03 
AnswerRe: Updating drop-downlist boxes corresponding to values selected in the other drop-down list Pin
Christian Graus2-Feb-09 9:18
protectorChristian Graus2-Feb-09 9:18 
GeneralRe: Updating drop-downlist boxes corresponding to values selected in the other drop-down list Pin
Ranjit Viswakumar2-Feb-09 10:16
Ranjit Viswakumar2-Feb-09 10:16 
GeneralRe: Updating drop-downlist boxes corresponding to values selected in the other drop-down list Pin
Christian Graus2-Feb-09 10:46
protectorChristian Graus2-Feb-09 10:46 
QuestionAuto Email Send Pin
Sarfaraj Ahmed2-Feb-09 7:03
Sarfaraj Ahmed2-Feb-09 7:03 
AnswerRe: Auto Email Send Pin
EliottA2-Feb-09 7:25
EliottA2-Feb-09 7:25 
AnswerRe: Auto Email Send Pin
Christian Graus2-Feb-09 8:16
protectorChristian Graus2-Feb-09 8:16 
GeneralRe: Auto Email Send Pin
Sarfaraj Ahmed2-Feb-09 14:22
Sarfaraj Ahmed2-Feb-09 14:22 
AnswerRe: Auto Email Send Pin
Ranjit Viswakumar2-Feb-09 10:06
Ranjit Viswakumar2-Feb-09 10:06 
GeneralRe: Auto Email Send Pin
Sarfaraj Ahmed2-Feb-09 11:59
Sarfaraj Ahmed2-Feb-09 11:59 
Questionis this query correct? Pin
M.Ambigai2-Feb-09 7:01
M.Ambigai2-Feb-09 7:01 
AnswerRe: is this query correct? Pin
EliottA2-Feb-09 7:27
EliottA2-Feb-09 7:27 
AnswerRe: is this query correct? Pin
Christian Graus2-Feb-09 8:18
protectorChristian Graus2-Feb-09 8:18 
AnswerRe: is this query correct? [modified] Pin
jceresini2-Feb-09 12:37
jceresini2-Feb-09 12:37 
QuestionThe connection's current state is closed. Pin
Franklinlloyd2-Feb-09 6:32
Franklinlloyd2-Feb-09 6:32 
AnswerRe: The connection's current state is closed. Pin
Christian Graus2-Feb-09 8:21
protectorChristian Graus2-Feb-09 8:21 
AnswerRe: The connection's current state is closed. [modified] Pin
jceresini2-Feb-09 12:44
jceresini2-Feb-09 12:44 
GeneralRe: The connection's current state is closed. Pin
Franklinlloyd3-Feb-09 3:18
Franklinlloyd3-Feb-09 3:18 
Questiondrag controls asp.net Pin
cooltoad1232-Feb-09 6:26
cooltoad1232-Feb-09 6:26 
AnswerRe: drag controls asp.net Pin
mr_muskurahat2-Feb-09 6:50
mr_muskurahat2-Feb-09 6:50 
GeneralRe: drag controls asp.net Pin
Ranjit Viswakumar2-Feb-09 11:18
Ranjit Viswakumar2-Feb-09 11:18 
QuestionCompare 160 million records Pin
RajaAhmed2-Feb-09 5:14
RajaAhmed2-Feb-09 5:14 
AnswerRe: Compare 160 million records Pin
Manas Bhardwaj2-Feb-09 5:22
professionalManas Bhardwaj2-Feb-09 5:22 
GeneralRe: Compare 160 million records [modified] Pin
Colin Angus Mackay2-Feb-09 5:39
Colin Angus Mackay2-Feb-09 5:39 
Manas Bhardwaj wrote:
Cache this information in your application memory and od the comparision from the in memory records


That is a seriously screwed up idea! You are crazy if you think that's a good idea.

Let SQL Server do what SQL Server is best at and have it do the comparison rather than saturate your network with 160 million rows of data and then bring the client PC to its knees because you've just dumped a shed-load of data in it.

What do you think the memory requirements are for 160 million rows?

Assume an integer primary key: 4 bytes
Assume each address is an average of say 32 characters (using a western alphabet) 32 bytes.

36 bytes * 160 million = 5,760,000,000

In total that is just shy of 6Gb you want to dump in RAM! On top of that you have overhead for the operating system, other applications and so on.

[UPDATE] Okay, I misready what sort of address. If we assume 20 bytes for an email address, the memory requirement is less, but it is still significant. 24 * 160 million = 3.8Gb

*Developer Day Scotland - Free community conference
*Colin Angus Mackay's Blog
*Latest Scottish Developers Newsletter


Vogon Building and Loan advise that your planet is at risk if you do not keep up repayments on any mortgage secured upon it. Remember that the force of gravity can go up as well as down.

modified on Monday, February 2, 2009 11:45 AM

GeneralRe: Compare 160 million records Pin
RajaAhmed2-Feb-09 19:00
RajaAhmed2-Feb-09 19: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.