Increasing User connections in SQL SERVER 2005

  • Gurus,

    Im new to SQL Server, please let me know how could I Increase user connections in SQL Server 2005.

    Regards,

    ~Sridhar

  • 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

  • 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


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply