February 3, 2009 at 5:23 am
Gurus,
Im new to SQL Server, please let me know how could I Increase user connections in SQL Server 2005.
Regards,
~Sridhar
February 3, 2009 at 6:12 am
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
February 3, 2009 at 6:20 am
yeah, not directly configurable without turning on advanced options.
i think this is what you are after:
[font="Courier New"]
--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[/font]
Lowell
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply