The sqlprofiler tag has no wiki summary.
0
votes
1answer
27 views
MS SQL Server's equivalent to PostgreSQL's EXPLAIN
Is there a SQL Server equivalent to PostgreSQL's EXPLAIN command that I can run on SQL Server 2008 R2 Express (ie. without SQL Profiler)?
Yes, yes I am a cheapskate.
4
votes
1answer
60 views
SQL Server Profiler deprecation - Replacement?
I am developing ASP.NET and SQL Server applications, sometimes i am having trouble with a SQL Query, and i would like to see the SQL Servers "response" and not just the ASP.NET error message (Which is ...
0
votes
1answer
43 views
Numeric(x,x) to Decimal(x,x) Sql Server weirdness
I have a really weird problem. I have a stored proc which has the following params:
@Id int OUTPUT,
@DataSourceId int,
@OwnerId int,
@Size numeric(16,6),
@SizeUnitId int,
@LayCanFrom datetime,
...
1
vote
0answers
28 views
SQLQueryNotificationStoredProcedure exception filling up the log
I'm seeing this exception over and over again for different users (exceptions seen via SQL Profiler). Any idea/clues as to where these are coming from and why?
Exception There is already an object ...
0
votes
0answers
38 views
Duplicate key value exception in Windows Workflow .NET Runtime
We used SQL profiler to run a trace for exception events and found that we're getting over 100 of the following errors every minute or so. The error seems to be stemming from the .NET Runtime or it's ...
0
votes
0answers
34 views
SQL Profiler shows unlogic reads count when using table-types
Wanted to Analyse the reads of one of our procedures which uses a user-defined table type as the procedure Argument. While separating the individual queries, the SQL Profile showed me strange Reads ...
0
votes
1answer
28 views
How to monitor SQL statements that are doing hard delete
I have an application that interacts with SQL Server 2008. I want to write a tool that help me identifying the SQL statements that causes hard delete in the table. Is it possible to find out using the ...
0
votes
0answers
82 views
Multiple RPC:Completed event and not single SQL:Batch* event getting fired for insert statements when MyBatis Batch Execution is used
I am using MyBatis batch execution support for performing bulk insert to database in SQL Server. I figured out from SQL Server profiler that it shows RPC:Completed event for each insert statment. I ...
0
votes
1answer
37 views
Profiler for MSAccess
I have a MSAccess .mdb file backed with sql server.
When i am trying to open a form ,It takes a long time to display
I know i had stuff on load event of Form.
Is there any way to track execution time ...
-1
votes
1answer
35 views
sp duration does not equal the sum of statement duration in sql profiler
I have a sp which takes over 6000 ms in sql profiler, but when I looked at the statement execution duration in this sp, most of them are 0, the sum of statement execution time is far less than 6000, i ...
3
votes
1answer
72 views
Radgrid VS Gridview - SQL Query compare
I ran the same code for RadGrid and Gridview and result is the same for both. However, when I look at the SQL profiler I see that RadGrid calls the query for 3 times. On the other hand Gridview ...
0
votes
1answer
151 views
Business Objects query from a report with multiple queries
In business objects I have reports(web intelligence) which has multiple queries using multiple universes, each of them with varied amounts of complexity with mapped dimensions, so combining them seems ...
1
vote
1answer
69 views
Why is the SQL query from Entity Framework not visible in the Sql Server Profiler when query contains declared variables?
Piece of code:
using (var dc = new Database())
{
var results = from a in dc.Article
where a.IdNeswpaper == 12
select ...
1
vote
1answer
86 views
SQL Profiler not displaying all ADO.NET operations
I have the following code which creates a serializable transaction. The application works as expected:
using (var tx = new TransactionScope(TransactionScopeOption.Required, new TransactionOptions { ...
2
votes
0answers
44 views
Is there anyway for SQL Server Profiler to remember column widths?
I've setup SQL Server Profiler to only report events relevant to me and it works great. However, I think that sucks is that it doesn't remember the column widths. I could set them up properly and ...
1
vote
1answer
100 views
Rollback Transaction SQL
I have a IIS hosted Python application and the front application always failed to save.
I noticed that there are a lots of transaction count more than 0 then rollback when SQL Profiler running and ...
0
votes
2answers
83 views
How to investigate why sql script that runs every day taking 2 min is taking 2 hours?
My colleague asked me a question today
"I have a SQL script containing 4 select queries. I have been using it
daily for more than a month but yesterday same query took 2 hours and
I had to ...
0
votes
0answers
85 views
SQL Profiler doesn't show all executed stored procedures
I have a report with a three datasets, and thus three stored procedure underneath those datasets.
When I turn on SQL Profiler, and execute that report, in Profiler I see only two of three ...
0
votes
1answer
75 views
SQL Profiler throws an error : Could not load file or assembly 'System.Data, Version = 2.0.0.0?
I installed a third-party SQL Server 2008 R2 toolset a few days ago and then uninstalled it yesterday. But now when I run SQL Profiler from SSMS, I get an error that says: Could not load file or ...
0
votes
1answer
97 views
Getting actual executin time/duration of MDX query
How can I get the actual execution time or actual duration taken by an MDX query to run? I am not interested for compiling, parsing, rendering results etc. I am only interested for the execution time.
...
1
vote
1answer
131 views
A couple of basic Sql Profiler questions
(Sorry for the longish question, I'll try to be concise.)
I'm running SQL Server Profiler and I'm chasing down some performance issues. I'm relatively new to what the profiler does and I've exported ...
0
votes
0answers
113 views
SQL Server Profiler, ObjectName column, 'Split'
What is the meaning of ObjectName column in SQL Server Profiler?
This http://msdn.microsoft.com/en-us/library/aa173882(v=sql.80).aspx gives rather concise definition.
For the records that are ...
3
votes
1answer
83 views
Can profiler templates be migrated to newer versions of SQL Profiler?
Is it possible to migrate Profiler templates to newer versions of SQL Server?
In my case I want to take my SQL 2008 templates to 2012. I've tried (1) a straight file copy and (2) an ...
0
votes
0answers
124 views
Sql Profiler remote host Not enough memory available for trace
I am trying to run a trace on a remote server using Microsoft Server Profiler in Microsoft Server 2008 R2. The 2 servers have the same version 10.50.1600.1 as seen in Sql Management Studio. The server ...
0
votes
1answer
61 views
OrderBy is not translated into SQL when passing a selector function
When I execute:
var t = db.Table1.OrderBy(x => x.Name).ToList();
In SQL profiler, this is the translated SQL:
SELECT
[Extent1].[ID] AS [ID],
[Extent1].[Name] AS [Name]
FROM [dbo].[Table1] AS ...
1
vote
4answers
45 views
column indexing and sql profiler
I have enabled sql profiler and identified several queries that are taking a long time to execute.
For example:
Select A from table_A where B = 2
My question is, based on above query, do I ...
2
votes
2answers
371 views
Linq-To-SQL Multiple Trips to the Database
I'm trying to make my Linq-to-SQL query more efficient by including child properties in one trip to the DB. I started by trying various linq queries to accomplish this. The queries were getting ...
0
votes
2answers
118 views
SQL Profiler - no hostname on Crystal Report
I am currently using SQL Server 2008 and Crystal Report 8.0. There are times when I need to know what computer runs the crystal report and unfortunately I can't seem to see it in SQL Profiler.
0
votes
1answer
96 views
How to see what SQL statements are executed when using SQL Express?
I am using SQL Express so I don't have access to SQL Profiler tools. Is there something I can use to see what statements are being executed while running an ASP.NET MVC application (live or in debug, ...
0
votes
1answer
127 views
Failed to save trace data to table - Profiler stops with this message
I am trying to run profiler and get it to log to a database. The profiler starts to run and then after few hours (yes few hours, I know its bad!!) the profiler stops with the message.
Failed to save ...
1
vote
4answers
591 views
View MDX used in Cube browser
I am trying to see the MDX which is used in Cube Browser. I searched on google and once again I am being redirected StackOverflow's post View MDX query generated while browsing a cube
Yes, I can see ...
1
vote
1answer
56 views
Parameterize then Replay trc files SQL Server 2008 [closed]
I've recorded using the SQLServer Profiler a trace file to be replayed (trc file).
I'm following the instructions from this article to stress my server.
I have to manipulate this file to parameterize ...
2
votes
1answer
401 views
How to see variable values in SQL Profiler when Trigger fires?
I am creating an "After Update" Trigger on a SQL Server 2008 table. The trigger fires just fine but one of the values it's updating in another table isn't correct. I am looking at a trace in SQL ...
0
votes
0answers
270 views
Sql Profiler does not returns any Text data
When i am profiling one application some of the text data returns the line below:
--*SELECT-------------------------------------------------
Why ?
Is there a way to retrieve these details from ...
4
votes
1answer
1k views
How initial startup for NHibernate Profiler
I have a Wpf application using Nhibernate.
I want to see details of sent query to database by NHibernate Profiler.
For initial startup, what should I do?
0
votes
2answers
552 views
Deadlock graph in sql server profiler
I am new to the concept of analyzing deadlock graph in profiler.I want to know that if I start my trace in sql server profiler and in that time no deadock occurs, willl be there any deadlock graph?
...
1
vote
1answer
1k views
SQL Server Profiler - How to filter trace to only display TSQL containing a DELETE statement?
I have a SQL Trace setup to monitor all TSQL being issued to a single database. However I only care about 'DELETE' TSQL statements being issued. Is there any way I can filter to just reporting these ...
0
votes
2answers
245 views
Compare two SQL Server Profiler traces
I want to compare two SQL Server profiler traces, any tool does this?
Thanks,
Ramkumar
2
votes
1answer
771 views
Reading SQL deadlock graph
Can someone please help me to read/understand this deadlock graph?
I don't understand why process 75 is requesting a lock on an object that he has a lock on already?
3
votes
1answer
393 views
SQL Profiler 2008 Deadlock Graph ToolTip Not Showing actual statements
In a deadlock graph, hovering over the deadlock ovals should produce the SQL statement. However, in SQL Profiler 2008, the ToolTip is either showing "Statement" or "Statement Proc" and not the ...
1
vote
1answer
300 views
How to use SQL Profiler Trace File with Dead Lock Events?
I am quite new to using sql profiler. I have a scenario in my application which runs on sql back end where i keep getting dead locks at the same place. I am able to reproduce it very easily. Using the ...
1
vote
1answer
2k views
How to find out client process ID in SQL Server Profiler?
I am using SQL Server Profiler to view my database activities. In that, I want to find out which Client Process ID is associate with which machine (From where application is running).
because there ...
1
vote
2answers
595 views
is it possible that SQL Profiler trace does not show calls done within a trigger?
I am just suspicious that the SQL Profiler does not show the calls done within by one of the triggers I have.
If I am right,
Is there a setting to force profiler to show also the calls done within ...
1
vote
2answers
122 views
How can I write a message to SQL profiler from Sql a query?
I am troubleshooting for some SQL issue and I use SQL Profiler in order to diagnose some problem.
Is it possible to write some messages into SQL Profiler by adding some lines in a TSQL query?
...
1
vote
3answers
368 views
How to see the SQL queries generated by NHibernate
I'm using SQL server express edition with ASP.NET MVC, there is not a profiler in express editions so I can't see the queries generated by NHibernate. I'm concerned about the performance and how I can ...
0
votes
2answers
158 views
Memory leak sql server 2000
there!
I use MS Sql server 8.0.
I have big problem with memory leak in it.
The physical memory, that is used by ms sql server can up to 900 MB. My question is can it be by bug in ms sql server or it ...
0
votes
1answer
913 views
sql profiler filters: stored procedure where parameter value = X
I want to profile a stored procedure but only when the input parameter is equal to a specific value. I'm currently doing an RPC: Starting with a filter on ObjectName for the stored procedure which ...
0
votes
1answer
540 views
How do you view Entity Framework calls in SQL Server Profiler?
I have a project that utilizes Entity Framework. I want to run SQL Server Profiler to see how many calls are being made to the database. I've enabled almost every different event possible to trace, ...
2
votes
2answers
456 views
Parameterized SQL and NULL running slow
I'm calling some parametrized sql from .net. I'm not sure why but the sql runs quite slow when checking if the parameter is NULL compared to when its not included:
So this:
exec sp_executesql N'
...
1
vote
1answer
411 views
Logging erroneous queries only on SQL server
I have what would seem to be an easy goal to accomplish, yet I have not found a good solution. Google does not shed a light on it and I just hope that I have been looking for a solution in wrong ...



