Sorry but not very familiar with the SQL Server environment...
1) can you explain where and how to open the SQL profiler
2) how to verify if it's the full SQL Server 2005 version installed or the Express version ?
Main Topics
Browse All TopicsI have found an installation of Sql Server 2005 on a SBS2003 R2 Standard server that we're not sure if it is being used or not.
1) How can we find out if it's being used or accessed by any of our pc's ?
2) How to differentiate if it's the free version SQL Server 2005 Express or the full blown product.
In Add/Remove programs, it says "SQL Server 2005" (no Express mentionned) and the file version of sqlserv.exe is 9.00.3042.0. Other instances of SQL server (Sbsmonitoring, etc) are the MSDE version 8.00.2039.
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
@@CONNECTIONS : Returns login attempts since the server was started.
@@MAX_CONNECTIONS: Returns maximum number of connections supported.
The simplest way to list all users and processes is to use the system stored procedure: sp_who
To list all active users: sp_who 'active'
to list details about a particular user: sp_who 'login-name'
Now to obtain the current number of connections to the server, you can use:
SELECT COUNT(*) AS CONNECTIONS FROM master..sysprocesses
Business Accounts
Answer for Membership
by: chapmandewPosted on 2009-11-05 at 07:00:51ID: 25750135
Open up SQL profiler and connect to the instance. Run the profile for a couple of days to see if any new connections are made.
OR...a more sure fire way...turn the service off and see if anyone complains. :)