WID sql RDCB list of connected

Alex Ch 70 Баллы репутации
2024-07-05T13:39:10.2033333+00:00

Hello. Tell me how to implement the idea.

I want to get a list of connected employees with remote IP addresses from the WID RDCB database.

Invoke-Sqlcmd -ServerInstance np:\\.\pipe\MICROSOFT##WID\tsql\query -Database RDCms -Encrypt Optional "SELECT username from dbo.rdcms"
Windows Server
Windows Server
Семейство серверных операционных систем Майкрософт, поддерживающих управление, хранение данных, приложения и обмен данными на уровне предприятия.
Вопросы: 18
Комментариев: 0 Без комментариев
Голосов: {count}

Ответы: 2

Сортировать по: Наиболее полезные
  1. Jacen Wang 960 Баллы репутации Поставщик Майкрософт
    2024-07-07T00:38:44.4766667+00:00

    Hello,

    You can try the steps below to execute the query:

    1. Launch SQL Server Management Studio and connect to WID. In SSMS, choose Database Engine as the server type. For server name, enter \\.\pipe\MICROSOFT##WID\tsql\query. Choose Windows Authentication.
    2. Open a new query window. Fall in the actual database name and execute the query.

    Here’s an example query. Note that the exact table and column names can vary based on your specific configuration:

    
    USE RDCbDB; -- Replace with your actual RDCB database name
    
    GO
    
    SELECT
    
        Sessions.SessionID,
    
        Sessions.UserName,
    
        Connections.RemoteIPAddress,
    
        Sessions.SessionState
    
    FROM
    
        Sessions
    
        JOIN Connections ON Sessions.ConnectionID = Connections.ConnectionID
    
    WHERE
    
        Sessions.SessionState = 'Active'; -- filter by active sessions, if needed
    
    

    Note: You need to require modification based on the actual schema of your RDCB database. Always ensure you have proper backups and access rights before making changes or running queries against critical databases. ———————————————————————————————————

    If the Answer is helpful, please click "Accept Answer" and upvote it.


  2. Alex Ch 70 Баллы репутации
    2024-07-15T08:19:02.8+00:00

    Hello. Invalid connection object name.

    Комментариев: 0 Без комментариев

Ваш ответ

Автор вопроса может помечать ответы как принятые. Это позволяет пользователям узнать, что ответ помог решить проблему автора.