Home Forums SQL Server 2012 SQL 2012 - General Determine the license of an existing SQL Server 2012 installation RE: Determine the license of an existing SQL Server 2012 installation

  • Not sure...but you see how many current live connections there using

    select * from sys.dm_exec_connections

    or select * from sys.sysprocesses where spid>50

    This will give you connections which is more relevant when talking about licensing.