Click here to Skip to main content
15,896,606 members
Home / Discussions / Database
   

Database

 
GeneralRe: Connection Prob Pin
Aaron VanWieren9-Feb-07 0:18
Aaron VanWieren9-Feb-07 0:18 
GeneralRe: Connection Prob Pin
Not Active8-Feb-07 19:01
mentorNot Active8-Feb-07 19:01 
AnswerRe: Connection Prob Pin
Mike Dimmick8-Feb-07 23:49
Mike Dimmick8-Feb-07 23:49 
GeneralRe: Connection Prob Pin
Kunal P10-Feb-07 21:19
Kunal P10-Feb-07 21:19 
QuestionLimitation of DataSet Pin
btsrinath8-Feb-07 4:02
btsrinath8-Feb-07 4:02 
AnswerRe: Limitation of DataSet Pin
Colin Angus Mackay8-Feb-07 4:08
Colin Angus Mackay8-Feb-07 4:08 
GeneralRe: Limitation of DataSet Pin
btsrinath8-Feb-07 4:25
btsrinath8-Feb-07 4:25 
GeneralRe: Limitation of DataSet Pin
Colin Angus Mackay8-Feb-07 4:42
Colin Angus Mackay8-Feb-07 4:42 
btsrinath wrote:
For getting 7000 records from DB it takes ~1hr 20mins. So you can just Imagine how many records are there in DB.


Or (possibly) how poorly configured the indexes are.


btsrinath wrote:
If I regularly update the dataset and data adapter by methods AcceptChanges and Update methods resepectively would the memory usage would reduce ?


Unlikely. As a general rule I simply don't use DataSets becuase of the memory overheads. I only use them for coding things in a quick and dirty way where speed of coding is preferred.

btsrinath wrote:
Can please suggest an good way of solving my problem ?


If you are doing any complex joins, judicious use of the tempDB can improve performance. Pulling data in to temp tables then performing Joins between these temp tables with a fraction of the rows is much faster than the same join on the original table. A few years ago I speeded up a query that was taking 20+ minutes down to 7 seconds this way. (There were billions of rows in the table, but my calculation only required joining a few thousand of them)

However, without knowing more about what you are doing any advice I give may be completely useless to you.


AnswerRe: Limitation of DataSet Pin
Aaron VanWieren9-Feb-07 0:16
Aaron VanWieren9-Feb-07 0:16 
AnswerRe: Limitation of DataSet Pin
Ennis Ray Lynch, Jr.9-Feb-07 3:32
Ennis Ray Lynch, Jr.9-Feb-07 3:32 
QuestionOpen Excel File Stored in Access Database Pin
Shaurya_Rastogi8-Feb-07 3:49
Shaurya_Rastogi8-Feb-07 3:49 
AnswerRe: Open Excel File Stored in Access Database Pin
Jerry Hammond9-Feb-07 3:29
Jerry Hammond9-Feb-07 3:29 
QuestionHow to access datetime column NULLvalue from database Pin
priya_p2338-Feb-07 2:35
priya_p2338-Feb-07 2:35 
AnswerRe: How to access datetime column NULLvalue from database Pin
Colin Angus Mackay8-Feb-07 4:16
Colin Angus Mackay8-Feb-07 4:16 
QuestionDataSet to SQL Pin
Soundman32.28-Feb-07 2:34
Soundman32.28-Feb-07 2:34 
AnswerRe: DataSet to SQL Pin
Aaron VanWieren9-Feb-07 0:23
Aaron VanWieren9-Feb-07 0:23 
QuestionMoving through each record Pin
RugbyLeague7-Feb-07 23:58
RugbyLeague7-Feb-07 23:58 
AnswerRe: Moving through each record Pin
andyharman8-Feb-07 0:48
professionalandyharman8-Feb-07 0:48 
GeneralRe: Moving through each record Pin
RugbyLeague8-Feb-07 0:52
RugbyLeague8-Feb-07 0:52 
GeneralRe: Moving through each record Pin
Colin Angus Mackay8-Feb-07 1:02
Colin Angus Mackay8-Feb-07 1:02 
GeneralRe: Moving through each record Pin
RugbyLeague8-Feb-07 1:05
RugbyLeague8-Feb-07 1:05 
GeneralRe: Moving through each record Pin
Colin Angus Mackay8-Feb-07 4:21
Colin Angus Mackay8-Feb-07 4:21 
GeneralRe: Moving through each record Pin
RugbyLeague8-Feb-07 4:26
RugbyLeague8-Feb-07 4:26 
GeneralRe: Moving through each record Pin
Colin Angus Mackay8-Feb-07 5:30
Colin Angus Mackay8-Feb-07 5:30 
GeneralRe: Moving through each record Pin
RugbyLeague8-Feb-07 5:33
RugbyLeague8-Feb-07 5:33 

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.