0
votes
0answers
3 views
Find user by PID in Citrix environment
We're running a Citrix farm and I'm trying to track heavy users of our DB, I can get the PID of the process from Sql Profiler but I then need to laboriously search for that PID in each server in the …
0
votes
3answers
77 views
How can i see what IP address made the request to SQL Server?
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) …
0
votes
2answers
85 views
Linq to Entities query hitting db twice
Hi,
I have the following pretty simple linq query querying a linq to entities edmx.
(from i in ent.Inspectors select i).OrderBy(s => s.Surname).Skip((page - 1) * count).Take(count).ToList();
In …
0
votes
1answer
34 views
SQL Profiler not connecting to my server
My SQL Profiler was working previously against my Server. I have not (AFAIK) made any modifications to the configuration of my server.
When I go into SQL Profiler I attempt to "Connect to SQL …
0
votes
5answers
106 views
SQL Server Profiler
I have been told that SQL Profiler makes changes to the MSDB when it is run. Is this true and if so what changes does it make?
MORE INFO
The reason I ask is that we have a DBA who wants us to range …
0
votes
3answers
125 views
Is there a way to filter a SQL Profiler trace?
I'm trying to troubleshoot this problem using SQL Profiler (SQL 2008)
After a few days running the trace in production, finally the error happened again, and now i'm trying to diagnose the cause. The …
1
vote
3answers
140 views
Is there a Microsoft SQL Profiler equivalent for Oracle
Hi,
99% of my time is in SQL Server land and so I'm not at all familiar with Oracle or its products...Is there a similar application to Microsoft SQL Profiler for use against Oracle databases? I'm …
0
votes
3answers
132 views
SQL Profiler 2008 - Shows Passwords
I have just noticed that Sql Profiler 2008 is not hiding trace outputs that include sp params called password. In 2005 it used to give me a message saying "The text has been replaced with this comment …
0
votes
2answers
196 views
How to filter SQL Server 2008 Profiler Output for a single database?
SQL Server 2008 Profiler always profiles all databases. I want to restrict profiling or output to a single database. How can that be done most easily?
0
votes
2answers
170 views
SQL Server Profiler - watch for permission denied on objects?
I'm using SQL Profiler to watch some database activity, and I'm interested in watching "Permission Denied" for various objects in the database. There are about 50 different items in the "Security …
0
votes
1answer
74 views
How do you access the Context_Info() variable in SQL2005 Profiler?
I am using the Context_Info() variable to keep track of the user that is executing a stored procedure and free-form sql. When troubleshooting issues on this server everyone session comes through. I …
0
votes
3answers
106 views
SQL Server Profiler discrepancy
Hello,
I am struggling with a strange problem using Sql Profiler. While running some performance testing scripts, I run profiler to find bottlenecks. One particular statement seems to be taking a lot …
1
vote
1answer
574 views
SQL Profiler CPU / duration units
The output from a SQL Server trace in profiler contains the columns CPU and Duration (amongst others). What units are these values in?
0
votes
1answer
281 views
SQL Server: Event does not reference any tables (Tuning Advisor warning)
I have an application written in C# which uses Linq2SQL for communicating with the SQL Server. There are some queries that run a bit (very) slow, and I figure it probably need some indexes to speed …
1
vote
3answers
287 views
SQL server profiler not showing LINQ To Sql queries
I am trying to view SQL generated by Linq to SQL in the SQL Server Profiler (2005).
I can see the sql sent to the server from anything except for linq to sql.
I'm betting that I need to change event …
