Viewing 15 posts - 226 through 240 (of 2,387 total)
More connections need more memory but 400 is not that large. SQL Server with your hardware configuration should be able to handle more connections.
You have to watch server's perform from...
August 26, 2004 at 2:29 pm
It is still in Beta 2. If you can't find any information you are looking from above website, Possibily you have to wait.
August 25, 2004 at 12:07 pm
No. SQL Server will place exclusive lock to the row or page or even database when it does insert/update.
August 25, 2004 at 11:32 am
August 25, 2004 at 11:23 am
It sounds like you have connection pooling enabled.
Check the registry HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\ASP\Parameters
for entry "StartConnectionPool", if the value is set to 1, ADO and ASP will utilize connection pooling.
August 25, 2004 at 10:21 am
You may script them, paste to QA in new server, change all of them to lower case by highting them and pressing shift+ctrl+L. If your table was lower case in...
August 24, 2004 at 2:28 pm
I guess there must be clustered index defined in this table. If it is, your database needs 1.2 to 1.5 times free spaces of the largest table depending on how...
August 24, 2004 at 2:16 pm
Sounds like you could have memory leak, that could happen in SQL Server, applications or even OS itself. You need run performance monitor to monitor all of the counters in...
August 24, 2004 at 2:10 pm
The original index name was CustomerID in order table in Northwind database. Once you change it, for example, to MyCustomerID with sp_rename, You have to modify your sp to use...
August 24, 2004 at 1:45 pm
Run server network utility SVRNETCN.exe to enable network protocol TCP/IP and Named Pipe from \Program Files\Microsoft SQL Server\80\Tools\Binn.
August 24, 2004 at 1:32 pm
That is the nature of SQL Server, It allocates as much as it needs.
You can limit max memory SQL Server can use by configuring the min and max memory from...
August 20, 2004 at 7:36 am
Viewing 15 posts - 226 through 240 (of 2,387 total)