Greetings, for sql 2000 and 2005 how can i check How many concurrent users per service / application / database - approx size atleast (peak / lean) db is 32 bit or 64 bit thanks in advanced
1)select db_name(dbid), count(*) from master..sysprocesses group by db_name(dbid) 2) The database will not be a 32 or 64 bit, it is the instance:DECLARE @value VARCHAR(50) EXEC master..xp_regread @rootkey = 'HKEY_LOCAL_MACHINE', @key = 'SOFTWAREMicrosoftMicrosoft SQL Server', @value_name = 'InstalledInstances', @value = @value OUTPUT