• please can u check with application team ,how many user connection they have mention in application.

    if that exceed problem will arise.

    or u can used below query for no connections on server

    SELECT login_name, COUNT(session_id) AS [session_count]

    FROM sys.dm_exec_sessions

    GROUP BY login_name

    ORDER BY login_name;