Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP.net & MS Access database on IIS5/NT

Reply
Thread Tools

ASP.net & MS Access database on IIS5/NT

 
 
XFER
Guest
Posts: n/a
 
      10-19-2003
Does anyone know how well 10 concurrent users will
perform on the above config? Are there any known issues,
limits to using MS Access with IIS 5 and ASP.net on a non-
..net server (NT)?
thanks.
 
Reply With Quote
 
 
 
 
Cowboy \(Gregory A. Beamer\)
Guest
Posts: n/a
 
      10-20-2003
As long as the server is NT kernel, you should be fine from the server side.
MS Access is a bit tricky, if you keep connections open, but that is
unlikely with ASP.NET. The users are not a great concern, unless they are
pulling large amounts of data with a single query, then you may block
another user. Concurrency is a possible issue, as well, but that is true
with any database.

Access is also designed for smaller amounts of data. I would suggest MSDE,
but you say 10 concurrent users. MSDE can handle many users, as long as only
5 are actually hitting the database at any one millisecond. It depends on
how you are defining concurrent. If you mean 10 people are using the app at
the same time, which means it is unlikely all 10 are actually hitting data
at the same millisecond, MSDE is a better option than Access, as it is SQL
Server.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"XFER" <> wrote in message
news:05bd01c39689$ad44a970$...
> Does anyone know how well 10 concurrent users will
> perform on the above config? Are there any known issues,
> limits to using MS Access with IIS 5 and ASP.net on a non-
> .net server (NT)?
> thanks.



 
Reply With Quote
 
 
 
 
Norman James
Guest
Posts: n/a
 
      10-20-2003

Thanks Gregory.
It is so difficult to get actual figures on this topic.

So, although the MSDE permits less (simultaneous) connections then
Access, it performs better and allows larger amounts of data?

What would the crossover point (Access -> MSDE) be with respect to data?
I have insert/updates of 5Kb and occasional reads up to 25Kb. (Assuming
max 5 simultaneous connections?)

Norman

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

 
Reply With Quote
 
Cowboy \(Gregory A. Beamer\)
Guest
Posts: n/a
 
      10-23-2003
MSDE is SQL Server 2000, only a "personal" version. As it is SQL Server, it
has the benefits of being an actual database server, rather than an engine
attached to a file. As it is a server, it will take more memory, but it will
serve up pages much faster, even with more data.

Realistically, I would never run an Access database more than around 25MB.
That may be huge for you right now. I also would be very careful about
access to the Access database, as it is quite easy to lock the database and
have all users suffer. With MSDE, being SQL Server, it is harder (damn near
impossible unless you are trying) to lock up the database completely.

The 5 simultaneous connections generally equate to hundreds of Internet
users, unless you are dumping huge amounts of data to a page (which is
generally frowned apon). The reason is data access, if done correctly, takes
a fraction of a second.

Another benefit of MSDE is the ability to add stored procedures, which will
add to security. As MSDE is more secure, by default, stored procs (aka
sprocs) are just one additional security benefit.

The hardest part is setting up MSDE for mixed mode, if you want to get away
from integrated security (more secure, but a bit harder to grasp the
concept). There are files on the support site for setting up a mixed mode
database, as well as plenty of info on the web for using iSQL or oSQL to set
up mixed mode after the fact.

If you can get SQL Server, you can use the client tools to manage the
database. If not, you are stuck with iSQL/oSQL or you can go out to source
repositories, like SourceForge.net and find a database management tool.

The extra benefit of MSDE is the ability to move up to full-fledged SQL
Server if your needs grow.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"Norman James" <> wrote in message
news:...

Thanks Gregory.
It is so difficult to get actual figures on this topic.

So, although the MSDE permits less (simultaneous) connections then
Access, it performs better and allows larger amounts of data?

What would the crossover point (Access -> MSDE) be with respect to data?
I have insert/updates of 5Kb and occasional reads up to 25Kb. (Assuming
max 5 simultaneous connections?)

Norman

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Database Database Database Database scott93727@gmail.com Computer Information 0 09-27-2012 02:43 AM
DataBase DataBase DataBase DataBase scott93727@gmail.com Computer Information 0 09-26-2012 09:40 AM
How can IIS access the database without having ASPNET account in the database Tony Johansson ASP .Net 7 12-23-2009 04:39 PM
Re: Software Developer to transcribe Oracle database into Access database Fluker MCSD 0 07-09-2003 01:20 PM
Re: Software Developer to transcribe Oracle database into Access database Guy Cox MCSD 1 07-09-2003 08:07 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57