Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am new to Asp.net development, currently I am working on a web project using asp.net and Vb.net.

Database Structure

Temp table with 20 lac records with 30 columns approx.

ID Autoincreament
Name Varchar
Address Varchar
DOB DateTime
PAN varchar

USers table
userid int autoincrement
uname varchar
allocated_count int

Allocate 1 to thousand records to user and then view these records one by one and update some. And again save to Database. Likewise another user can be allocate with 1001 to 2000 records. Database uses MySQL.

Approx 2000 concurrent users are going to access this site, and each user has set of records explained above.

My thinking:

Select required fields in Dataset
Manipulate data one by one from dataset and display on screen.
Store updated record database.
Keep track of updated records with flags in Database table
Navigation of records using previous and next buttons.

Problems:

How to store data in Dataset for each user.
How to maintain performance for each user for accessing data.
Maintain concurrency in users.

Application server and Database server are separate.
Please suggest best approach to start with.
asp.net mysql vb.net
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900