Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
divan
Posting Yak Master
153 Posts |
Posted - 2013-08-27 : 10:44:49
|
I am using SQL Profiler to trace a process in a sql DB.. In this process there are drop downs where the user will have to select a value from the drop down.. Is there any way that I can see in the profiler what the user has selected..Thanks |
|
Bustaz Kool
Master Smack Fu Yak Hacker
1834 Posts |
Posted - 2013-08-27 : 12:33:16
|
The drop downs are an application level activity. Unless the application is using that information with the database (e.g. "select * from MyTable where state = <<drop down value>>") you won't see it via Profiler.=================================================The cure for anything is salt water -- sweat, tears, or the sea. -Isak Dinesen |
 |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2013-08-28 : 02:34:48
|
you should be able to get selected values from profiler trace though by looking for corresponding parameter values------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/https://www.facebook.com/VmBlogs |
 |
|
|
|
|