How to find the number of sockets in sql server 2000,2005 and 2008 version?

  • Sql server licensing is based on number of sockets.that why i am in need to know the number of sockets using query in sql server 2000,2005 and 2008 version?

    Help me.

    Regards,
    Kumar

  • In SQL Server 2005/2008 you can issue this:

    select socket_count = cpu_count / hyperthread_ratio

    from sys.dm_os_sys_info

    In SQL Server 2000 I'm not aware of any way of querying this.

    -- Gianluca Sartori

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

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