vote up 0 vote down star

Hello,

i need to clearly see what IP address made what sql query to SQL server. I am trying to use SQL Profiler, but it seems there is no way i can somehow to differentiate the machine (browser) where the query came from. It only has the communication details between the web server and the sql server. Is there ANY way for me (any unknown log?) that will allow me to see the identification of the original machine where the query came from?

Thanks for any suggestion.

HF

flag
ok.. yes.. thanks for confirmation (unless i send the ip explicitly to db, there is no way to say). thanks you. – unknown (google) Nov 4 at 16:04

3 Answers

vote up 2 vote down

As far as SQL Server is concerned the request will always come from your webserver. You need to capture and log the IP address in your web app.

link|flag
vote up 0 vote down

If you do not write code in the application to pass the client address from the web server to the database you will have to look at the web logs - they will give the ip address of the client.

link|flag
vote up 0 vote down

You can get the hostname of the current connection, or really any information from the sysprocesses table

SELECT hostname FROM sys.sysprocesses WHERE spid = @@SPID

This obviously won't work to get the ip address of web hosts if that's what you're looking for.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.