An Azure relational database service.
Hi, @Prem Gokull As per the support your query has been resolved here is the resolution to get the IP address(in SSMS):
select
@@servername as [Server Name],
@@servicename as [Instance Name],
client_net_address as [Client Machine IP],
local_net_address as [SQL Server IP],
local_tcp_port as [SQL Server Port],
auth_scheme as [Authentication Mode],
net_transport as [Physical Transport Portocol],
protocol_type as [Payload Portocol Type]
FROM sys.dm_exec_connections
where session_id=@@SPID
Please do not forget to "Accept the answer" wherever the information provided helps you to help others in the community
Regards
Geetha