i have an access front end and sql server backend. i would like to know which users are currently using the database. is this possible to do using access or sql-server?
For SQL Server you can try
SELECT * FROM sys.dm_exec_sessions
which will list all the open sessions