sde Posted October 30, 2003 Posted October 30, 2003 i'm about to attempt my first multi-tiered application and i'm wondering just how practical large datasets on the server app would be. i'm dealing with about 800,000 customer records. ... just your standard contact information. i'm just trying to get a concept on how this will work with about 26 clients maintaining data. is that too many records to be efficient in a dataset? i suppose i should just try it, but i wanted to see if anyone had any thoughts on the subject. Quote codenewbie
Moderators Robby Posted October 30, 2003 Moderators Posted October 30, 2003 You can create a stored proc to do your paging, so that each results set returned is only as large as your page size. (let's say 50) You don't want a result of 800,000 records that's for sure. Quote Visit...Bassic Software
sde Posted October 31, 2003 Author Posted October 31, 2003 yeah, after 50k records, it was using 100mb of memory. Quote codenewbie
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.