Jump to content

need confirmation on table use


niche

Recommended Posts

say 300 users just produced input that requires access to the same table and the same columns at more or less the same time.Doesn't the server provide access on a first come first served basis resolving simultaneous request in some equatable fashion?Also, is there a metric that identifies how many simultaneous requests can be handled before it resets, freezes, to just becomes too slow? If so, what's it called?

Link to comment
Share on other sites

A good database management system will ensure ACID transactions:http://en.wikipedia.org/wiki/ACID

Also, is there a metric that identifies how many simultaneous requests can be handled
Not really, different transactions can take different amounts of time so there's no one metric. There are a lot of tools to help analyze how the database gets used though. SQL Server, for example, has a profiler that you can run to analyze all of the queries that come in on a database and suggest things like changes to indexes or data types to make things faster.
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...