Technology: ASP, SQL Server, javascript
I've design an web application which runs a stored proc (that cleans out and fill this table w/ data). When there's different web users generating their own report at the same time (particularly when one report is still being generated), there'll be a conflict because this one table is still generating data while another user tries to generate his own data report to the same table. Also, not to mention that the same sql account (userReport used for all web users) is conflicting at that same time! Any solutions to this?? If I run the query strictly from the ASP page, w/o using the stored proc and that dynamic table, to generate data on the fly.. session time out will occur on long reports. Arghhhh...!?.
- Lost in limbo
I've design an web application which runs a stored proc (that cleans out and fill this table w/ data). When there's different web users generating their own report at the same time (particularly when one report is still being generated), there'll be a conflict because this one table is still generating data while another user tries to generate his own data report to the same table. Also, not to mention that the same sql account (userReport used for all web users) is conflicting at that same time! Any solutions to this?? If I run the query strictly from the ASP page, w/o using the stored proc and that dynamic table, to generate data on the fly.. session time out will occur on long reports. Arghhhh...!?.
- Lost in limbo