quarta-feira, 25 de janeiro de 2017

Free FTP Client for Windows: WinSCP

WinSCP

https://winscp.net/eng/download.php

terça-feira, 10 de janeiro de 2017

Skype Preview not updating on Windows 10 Mobile Store

I removed the SD card from the Phone, then tried the download again on the Windows Store and it installed successfully.

sexta-feira, 6 de janeiro de 2017

AZURE SQL see connnection count

SELECT
    c.session_id, c.net_transport, c.encrypt_option,
    c.auth_scheme, s.host_name, s.program_name,
    s.client_interface_name, s.login_name, s.nt_domain,
    s.nt_user_name, s.original_login_name, c.connect_time,
    s.login_time
FROM sys.dm_exec_connections AS c
JOIN sys.dm_exec_sessions AS s
    ON c.session_id = s.session_id
;