April 4, 2018 at 12:11 am
Hi Experts,
Trace result is giving application name in hexdecimal values like below. How to find the exact application name. These are application accessing SQL Server.
A98B8513-AFA3-4464-A403-114A3377A682
A6799C43-A9BE-4B86-9CFF-19565F263684
Thanks in Advance
April 4, 2018 at 2:04 am
Those are the application names, at least it's what the app is putting into the connection string when connecting. Trace doesn't obsfucate or hash application name.
Add in the username column, and the host name, and you'll at least know where the app is connecting from, but from there it's going to have to be some investigation to identify what app is giving that na,e
p.s. Why are you using Profiler on SQL 2014????
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 4, 2018 at 2:22 am
GilaMonster - Wednesday, April 4, 2018 2:04 AMThose are the application names, at least it's what the app is putting into the connection string when connecting. Trace doesn't obsfucate or hash application name.
Add in the username column, and the host name, and you'll at least know where the app is connecting from, but from there it's going to have to be some investigation to identify what app is giving that na,ep.s. Why are you using Profiler on SQL 2014????
Thanks Gail.
Was trying to collect the TSQL batch starting and batch completed for a small duration to calculate the IO.
April 4, 2018 at 2:33 am
Ok, why are you using Profiler on SQL 2014?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 4, 2018 at 3:08 am
GilaMonster - Wednesday, April 4, 2018 2:33 AMOk, why are you using Profiler on SQL 2014?
you mean to say use extended events?
April 4, 2018 at 5:54 am
VastSQL - Wednesday, April 4, 2018 3:08 AMGilaMonster - Wednesday, April 4, 2018 2:33 AMOk, why are you using Profiler on SQL 2014?you mean to say use extended events?
Yes.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 4, 2018 at 5:58 am
GilaMonster - Wednesday, April 4, 2018 5:54 AMVastSQL - Wednesday, April 4, 2018 3:08 AMGilaMonster - Wednesday, April 4, 2018 2:33 AMOk, why are you using Profiler on SQL 2014?you mean to say use extended events?
Yes.
Thanks Gail. Will use the same .
April 4, 2018 at 6:04 am
Note, it's going to return the same application names, because that's not profiler hashing or anything like that. It's the application passing that guid as the application name in the connection string.
SQL doesn't know what applications are connecting to it. It only knows what the applications say that they are.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply