Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
homeguard
Starting Member
32 Posts |
Posted - 2008-05-27 : 15:45:55
|
| can there be multiple users on one single sql login? I keep getting errors from my users randomly about the server timing out and i am wondering if they are trying to submit append queries at the same time. |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2008-05-27 : 15:46:49
|
| You can connect multiple times using the same login. Connection pooling takes advantage of this. What are append queries?Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/Database maintenance routines:http://weblogs.sqlteam.com/tarad/archive/2004/07/02/1705.aspx |
 |
|
|
homeguard
Starting Member
32 Posts |
Posted - 2008-05-27 : 15:56:49
|
| sorry not append i mean insert query. |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2008-05-27 : 15:59:42
|
| Timeouts are typically due to one of the below reasons:1. Poorly written queries2. Hardware bottlenecks3. Bad database design4. Blocking5. Missing indexes6. Fragmented indexes7. Old statisticsTara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/Database maintenance routines:http://weblogs.sqlteam.com/tarad/archive/2004/07/02/1705.aspx |
 |
|
|
homeguard
Starting Member
32 Posts |
Posted - 2008-05-27 : 16:01:56
|
| how exactly does connection pooling work? |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2008-05-27 : 16:02:48
|
| Please google for the answer. This is widely used for web applications.Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/Database maintenance routines:http://weblogs.sqlteam.com/tarad/archive/2004/07/02/1705.aspx |
 |
|
|
|
|
|