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 |
|
jhocutt
Constraint Violating Yak Guru
385 Posts |
Posted - 2004-11-10 : 09:56:17
|
| I have a machine (see winmsd info below) that is running SQL Server 7.0.1063it is a replacement for a much smaller and slower server that we were having problems with .My problem is that I am still having the same issue.There are at any one time between 100 and 400 connections to the database with 1/2 of these doing inserts into the same table (CDR Call detail records). Occasionally we have a short period usually less than 1 min where the database refuses connections and the applications writing to it time out. I can find no information in the SQL Server Error logs or System Event logs. The only thing I can find that seems to be happening at approximately the same time is that the pagefile seems to be very busy. Other Queries inserts, deletes and updates all work well during this outage it is only this one table I am having trouble with. I have archived the data and truncated the table to the last 30 days data but am still having the same issues. Any help you can give would be greatly appreciated.OS Name Microsoft Windows 2000 Advanced ServerVersion 5.0.2195 Service Pack 4 Build 2195OS Manufacturer Microsoft CorporationSystem Name XXXXXSystem Manufacturer Dell Computer CorporationSystem Model PowerEdge 2650 System Type X86-based PCProcessor x86 Family 15 Model 2 Stepping 9 GenuineIntel ~2790 MhzProcessor x86 Family 15 Model 2 Stepping 9 GenuineIntel ~2790 MhzProcessor x86 Family 15 Model 2 Stepping 9 GenuineIntel ~2790 MhzProcessor x86 Family 15 Model 2 Stepping 9 GenuineIntel ~2790 MhzBIOS Version Phoenix ROM BIOS PLUS Version 1.10 A17Windows Directory C:\WINNTSystem Directory C:\WINNT\system32Boot Device \Device\Harddisk0\Partition2Locale United StatesUser Name XXXXX\AdministratorTime Zone Eastern Standard TimeTotal Physical Memory 2,096,560 KBAvailable Physical Memory 67,732 KBTotal Virtual Memory 5,609,940 KBAvailable Virtual Memory 1,452,616 KBPage File Space 3,513,380 KBPage File C:\pagefile.sys |
|
|
chadmat
The Chadinator
1974 Posts |
Posted - 2004-11-10 : 12:06:44
|
| My best guess would be blocking since all of the writing is happening on the same table. But the Pagefile activity suggests that you are running out of memory.Those are the 2 areas I would focus on.-Chadhttp://www.clrsoft.comSoftware built for the Common Language Runtime. |
 |
|
|
jhocutt
Constraint Violating Yak Guru
385 Posts |
Posted - 2004-11-10 : 12:48:50
|
quote: Originally posted by chadmat My best guess would be blocking since all of the writing is happening on the same table.
No I have checked during the outages and there are no Process Id's that are blocked or blocking.
quote: Originally posted by chadmat But the Pagefile activity suggests that you are running out of memory.Those are the 2 areas I would focus on.-Chadhttp://www.clrsoft.comSoftware built for the Common Language Runtime.
As for memory there is 1.5 gigs allocated to SQL Server. How much would it need? and what is the best way to see how much of the allocated memory SQL Server is actually using. Because it is grabbing the whole 1.5 gigs at startup. |
 |
|
|
|
|
|