|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Monday, May 11, 2009 3:11 AM
Points: 12,
Visits: 27
|
|
Gurus,
Im new to SQL Server, please let me know how could I Increase user connections in SQL Server 2005.
Regards, ~Sridhar
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Monday, May 11, 2009 3:11 AM
Points: 12,
Visits: 27
|
|
I worked on this optionn:
sp_configure 'user connections', 800; GO RECONFIGURE; GO
But, was throwing Msg 15123, Level 16, State 1, Procedure sp_configure, Line 51 The configuration option 'user connections' does not exist, or it may be an advanced option.
Any help...
Regards, ~Sridhar
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Today @ 4:22 PM
Points: 11,789,
Visits: 28,063
|
|
yeah, not directly configurable without turning on advanced options.
i think this is what you are after:
--advanced options get enabled sp_configure 'show advanced options', 1; GO RECONFIGURE GO --'user connections' 0=unlimited, change to an integer value if you wanted, say 800 maximum sp_configure 'user connections', 0 GO RECONFIGURE
Lowell
--There is no spoon, and there's no default ORDER BY in sql server either. Actually, Common Sense is so rare, it should be considered a Superpower. --my son
|
|
|
|