Sql 2008 license query

  • Is there a query I can run for Sql 2008 to find out if a server is licensed under per processor or by per seat?

  • No.

  • thanks,

    is there a query for maximum number of concurrent connections?

  • Actually there is:

    select SERVERPROPERTY('Edition') as [Edition],

    SERVERPROPERTY('LicenseType') as [License Type],

    SERVERPROPERTY('NumLicenses') as [# of Licenses]

    edit: disregard..apparently this doesn't work, since the installer no longer puts license info in the registry.

  • amdavis (10/6/2010)


    thanks,

    is there a query for maximum number of concurrent connections?

    The maximum connections can be viewed by running this script on SQL Server.

    --------------------------------------

    exec sp_configure 'show advanced' , 1

    reconfigure with override

    go

    exec sp_configure 'user connections'

    --------------------------------------

    0 is default and means "unlimited". Unlimited means 32767 concurrent connections.

Viewing 5 posts - 1 through 4 (of 4 total)

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