Click here to Skip to main content
16,005,389 members
Home / Discussions / Database
   

Database

 
QuestionHow to audit a database? Pin
uglystone5-Apr-06 13:51
uglystone5-Apr-06 13:51 
AnswerRe: How to audit a database? Pin
Colin Angus Mackay5-Apr-06 21:15
Colin Angus Mackay5-Apr-06 21:15 
AnswerRe: How to audit a database? Pin
uglystone21-Apr-06 18:08
uglystone21-Apr-06 18:08 
QuestionDSN / SQL Connection String Pin
rahsi5-Apr-06 6:13
rahsi5-Apr-06 6:13 
AnswerRe: DSN / SQL Connection String Pin
Colin Angus Mackay5-Apr-06 7:28
Colin Angus Mackay5-Apr-06 7:28 
GeneralRe: DSN / SQL Connection String Pin
rahsi6-Apr-06 8:30
rahsi6-Apr-06 8:30 
QuestionSQL/VB.Net Pin
MikeUPMC5-Apr-06 5:34
MikeUPMC5-Apr-06 5:34 
AnswerRe: SQL/VB.Net Pin
Colin Angus Mackay5-Apr-06 5:58
Colin Angus Mackay5-Apr-06 5:58 
MikeUPMC wrote:
I noticed that when I load in data onto my form it takes a very long time to load, I'm only talking about 91K records.


Don't pull 91K rows across from the database to your application. It is inefficient.

Do you desperately need all 91K rows on the client at once? Are you processing all 91K rows at the same time in your client?


MikeUPMC wrote:
Is this normal or is it inherit in Sql Server & or Vb.net?


Neither. I would suggest it is the .NET Framework - DataGrids and the like really are not designed to handly 91K rows all at once. It will accept it, and your application will guzzle the memory it needs to support it, but it really is a bad idea.

When you make a request like that through the DataAdapter the call will complete only when all 91K rows have been pulled out of SQL Server, across the network (how much bandwidth is all this data taking?) and into your client application.


"On two occasions, I have been asked [by members of Parliament], 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able to rightly apprehend the kind of confusion of ideas that could provoke such a question."
--Charles Babbage (1791-1871)

My: Website | Blog
GeneralRe: SQL/VB.Net Pin
MikeUPMC5-Apr-06 9:14
MikeUPMC5-Apr-06 9:14 
GeneralRe: SQL/VB.Net Pin
Colin Angus Mackay5-Apr-06 9:54
Colin Angus Mackay5-Apr-06 9:54 
QuestionUpdate 100 000 rows.... Pin
Pius__X5-Apr-06 4:53
Pius__X5-Apr-06 4:53 
AnswerRe: Update 100 000 rows.... Pin
Colin Angus Mackay5-Apr-06 5:29
Colin Angus Mackay5-Apr-06 5:29 
GeneralRe: Update 100 000 rows.... Pin
Pius__X5-Apr-06 11:09
Pius__X5-Apr-06 11:09 
GeneralRe: Update 100 000 rows.... Pin
Colin Angus Mackay5-Apr-06 11:15
Colin Angus Mackay5-Apr-06 11:15 
GeneralRe: Update 100 000 rows.... Pin
Colin Angus Mackay5-Apr-06 11:17
Colin Angus Mackay5-Apr-06 11:17 
GeneralRe: Update 100 000 rows.... Pin
Pius__X5-Apr-06 23:39
Pius__X5-Apr-06 23:39 
GeneralRe: Update 100 000 rows.... Pin
Colin Angus Mackay6-Apr-06 0:09
Colin Angus Mackay6-Apr-06 0:09 
QuestionExceptionally dumb SQL Server question Pin
BambooMoon5-Apr-06 4:52
BambooMoon5-Apr-06 4:52 
AnswerRe: Exceptionally dumb SQL Server question Pin
Colin Angus Mackay5-Apr-06 5:21
Colin Angus Mackay5-Apr-06 5:21 
QuestionRe: Exceptionally dumb SQL Server question Pin
BambooMoon5-Apr-06 8:24
BambooMoon5-Apr-06 8:24 
AnswerRe: Exceptionally dumb SQL Server question Pin
Colin Angus Mackay5-Apr-06 9:49
Colin Angus Mackay5-Apr-06 9:49 
QuestionHow to do that????? Pin
Pius__X5-Apr-06 4:35
Pius__X5-Apr-06 4:35 
AnswerRe: How to do that????? Pin
Colin Angus Mackay5-Apr-06 5:11
Colin Angus Mackay5-Apr-06 5:11 
Questionfree online SQL Formatter Pin
Tako.Lee4-Apr-06 23:28
Tako.Lee4-Apr-06 23:28 
QuestionHow to Save the values in DataBase. Pin
Amit Agarrwal4-Apr-06 23:23
Amit Agarrwal4-Apr-06 23:23 

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.