Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
7k views

What is “Audit Logout” in SQL Server Profiler?

I'm running a data import (using C#/Linq), and naturally I'm trying to optimize my queries as much as possible. To this end I'm running a trace on the DB using SQL Server Profiler, with my trace ...
4
votes
3answers
5k views

SQL Server Profile - View Parameter Values?

In SQL Server Profile, I have it tracing SP:StmtStarting events. The "TextData" includes information like the following: EXEC MySortedProc @param, NULL, @param2, NULL What would I have to ...
3
votes
1answer
99 views

capture flow of execution in SQL Server

I am very new to Microsoft SQL server. I am wondering if it is possible to capture a trace of the sql query on a database executed from an external program while ignoring the actions caused by ...
3
votes
1answer
160 views

SQL Server 2005 -Seeing SPs executing inside SPs

I am wondering if it is possible to see stored procs that are being executed by other stored procs in Sql Server Profiler, is it possible, and if so how?
3
votes
2answers
1k views

Imitating SQL Server Profiler in a C# app?

I want to create a trace on a database server from my C# app, like what you do in SQL Server Profiler. I have found stored procedures (sys.sp_trace_create etc...) that dont seem to work for my SQL ...
2
votes
1answer
72 views

Why is NULL reads so high in my SQL trace?

I have inserted data from a sql trace in a table and I have a problem interpreting the data in table. In the attached image the reads related to my SP are very low but on the next line for a value of ...
2
votes
1answer
27 views

how can i turn off lines from “Report Server” on my SQL Server Profiler?

It's my first time using SQL Server Profiler and I'm wondering how can i turn off event lines from the application "Report Server" on my SQL Server Profiler? I just want certain activities to be ...
2
votes
1answer
106 views

How can I use SQL Server Profiler to view the TSQL ran in a CLR trigger?

How can I user SQL Server Profiler to view the TSQL ran in a CLR trigger? I have a CLR trigger in the a MS SQL Server DB, that checks the Inserts, Updates, Deletes on a table and then conditionally ...
2
votes
2answers
41 views

SQL Profiler - Help filter Stored Procs

Could someone assist me with the perfect template for using SQL Profiler to debug stored procs? I've tried most templates that are stanard, but all produce a lot of stuff I don't want to see. I want ...
2
votes
3answers
143 views

Know of any Firebird profilers and/or stress tester app's?

The title pretty much says it all. Im looking for som testing programs for a firebird db server, to stress-test and find bottlenecks. Something like DB-Optimizer, only for firebird would be nice. ...
2
votes
2answers
354 views

SQL Server Profiler: How can I display query parameter values in deadlock graph?

I'm trying to debug a deadlock with SQL Server Profiler 2008. I know how to get a graph of the deadlock in the profiler, but when I hover over one of the two statements in shown in the graph, the ...
2
votes
1answer
680 views

What to look for when setting UpdateBatchSize

I have a .NET application that is merging two datatables with a lot of rows (10,000+). There is a good chance of having a large number of update/inserts to perform to the SQL table when using the ...
1
vote
3answers
52 views

SQL Server Profiler - Column Meanings

Can anyone point to a reference which describes what is being returned in the IntegerData and IntegerData2 columns. I am particularly interested in their meaning for SQL:StmtCompleted event.
1
vote
1answer
64 views

SQL Server Profiler needs too much memory

I'm using SQL Server Profiler for recording the activity of an software, which creates a ~50 GByte database with > 300 tables including the data. The Profiler saves the trace log into a table in a ...
1
vote
2answers
118 views

LINQ-to-SQL - when does it access the database?

In my asp.net mvc 2 app I have an action which is rather data-heavy. I'm using linq-to-sql for the queries, while using the repository pattern. When I check the execution of the action in SQL Server ...
1
vote
2answers
101 views

Logging data transfer time in SQL Server Profiler

I've been using SQL Server profiler quite frequently to check for redundant or badly performing queries. But is there an event (among the giant list) that allows you to log the total amount of time ...
1
vote
1answer
507 views

Stored procedure output parameters in SQL Server Profiler

I've got a stored procedure with an int output parameter. If I run SQL Server Profiler, execute the stored procedure via some .Net code, and capture the RPC:Completed event, the TextData looks like ...
0
votes
0answers
4 views

SQL Server 2000 SQL Profiler filters ignored

I'm not able to filter my events for database. When i create the trace, i specify in the filters tab, a "Database Name" and i add my database name "pr200". But the profiler seems to ignore this ...
0
votes
0answers
18 views

Distinguish same procedure statements in SQL Profiler

I am using the "TSQL_SPs" template in Profiler (2005) to trace the execution of statements inside a stored procedure. All is fine and I can see the individual statements in the trace. However when I ...
0
votes
1answer
127 views

Which tool to use for database (mssql) performance test? Write custom tool + profiler or Jmeter

I want to do performance testing for my database, so I need to simulate requests to database and also measure duration and other statistics. my database is MS Sql Server 2005/8 and my server running ...
0
votes
4answers
414 views

SQL Server Profiler showing EF queries against master database?

What am I missing here? The queries I see in SQL Server Profiler are all targeted against the master database, which makes it difficult to filter by database name ... which event or events should I be ...
0
votes
0answers
58 views

Performance discrepancy in SQL Server Profiler between web query and the same query ran in SSMS

I have a query that takes ~20x as long for SQL server to execute when it comes from a web request, as it does from when the exact same query is ran via SQL Server Management Studio The following ...
0
votes
1answer
488 views

SQL Server Profiler 2005: How to measure execution time of insert statement with trigger?

I want to measure the execution time (using I guess duration from SQL Server Profiler) of an insert statement that has an instead-of insert trigger on it. How do I measure the complete time of this ...
0
votes
1answer
267 views

How to dump an output from SQL Server Profiler 2008 to a CSV-like file

I am debugging stored procedures, and right now I am interested in what ran in what order and which which parameters as opposed to how fast things ran and what may sneak in between and cause a ...
0
votes
1answer
74 views

SQL Server Profiler issue

I am using SQL Server 2008 Enterprise and I want to use SQL Server profiler to capture deadlock event only. And when deadlock occurs and event captured, I will stop SQL Server profiler. My question ...
0
votes
2answers
215 views

Debugging “Incorrect Syntax” Exception

I have recently been working with a COM+ component that processes an input XML file, and makes a number of database updates based on the supplied data. Running SQL Profiler with EventClass Exception, ...
0
votes
1answer
1k views

In SQL Server, how to move/import a multiple .trc files to a trace table

I have a set of rollover .trc files recorded with Sql Profiler. mytrace.trc mytrace_1.trc mytrace_2.trc mytrace_3.trc I can import the first one using this command: use [my-database] SELECT * ...
0
votes
4answers
1k views

How do I get parameter values for SQL Server query in SQL Server Profiler

I'm trying to analyze a deadlock in SQL Server 2008 profiler. I know how to find the offending sql queries, but the collected queries do not include parameter values. I other words I can see ...