Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i work with sql server, but i must migrate to an application with Oracle DB. for trace my application queries, in Sql Server i use wonderful Profiler tool. is there something of equivalent for Oracle? Thank you for any Advice.

share|improve this question
Why did you accept a wrong answer? Explain plan DOESN'T do what the profiler does. It's totally unrelated. – Jasmine May 7 at 20:46

8 Answers

up vote 10 down vote accepted

EXPLAIN PLAN and tkprof

http://www.dbspecialists.com/files/presentations/use_explain.html

Many utilities (e.g. TOAD, Oralce Enterprise Manager, Oracle SQLDeveloper) have interfaces to make this more straight forward than lots of playing around on the command line.

share|improve this answer
1  
Thanks for your answere! but it's very strange that an oracle client is not able to do it... e.g. to see trace file with TFPROF i must at least access to the DB server! in sql server it's very easier! – stefano m Sep 29 '08 at 13:44
anyway, wonderful links! Thank u a lot to other people too! – stefano m Sep 29 '08 at 13:59
1  
And SET AUTOTRACE in SQL*Plus; it can give quick plans, as well as LIO/CIO/PIO counts and round trips, which isn't as thorough for examining waits, but still an effective tool. – Adam Musch Sep 14 '10 at 15:09
In sqldeveloper you can enter your query, then hit f10 to obtain an explain plan. f6 to execute it with autotrace. – Ron Jan 28 '11 at 17:08
4  
This answer is not correct IMO, because this is not what the SQL Profiler does. Looking at query plans and statistics is available in the client program for SQL Server, just like Oracle. The Profiler is a different tool that captures currently running queries regardless of where they come from - so you can look at the effect of hundreds of users hitting the server, you can see what queries are being run and information about them. That is way beyond tracing single queries. Normally I wouldn't care about a wrong answer on here, but it's coming up in Google for "how to profile Oracle" – Jasmine Apr 11 at 15:16

Seeing as I've just voted a recent question as a duplicate and pointed in this direction . . .

A couple more - in SQL*Plus - SET AUTOTRACE ON - will give explain plan and statistics for each statement executed.

TOAD also allows for client side profiling.

The disadvantage of both of these is that they only tell you the execution plan for the statement, but not how the optimiser arrived at that plan - for that you will need lower level server side tracing.

Another important one to understand is Statspack snapshots - they are a good way for looking at the performance of the database as a whole. Explain plan, etc, are good at finding individual SQL statements that are bottlenecks. Statspack is good at identifying the fact your problem is that a simple statement with a good execution plan is being called 1 million times in a minute.

share|improve this answer

You can use The Oracle Enterprise Manager to monitor the active sessions, with the the query that are beeing executed, its execution plan, locks, some statistics and even a progress bar for the longer tasks.

See: http://download.oracle.com/docs/cd/B10501_01/em.920/a96674/db_admin.htm#1013955

Go to Instance -> sessions and watch the SQL Tab of each session.

There are other ways. Enterprise manager just put with pretty colors what is already avalaible in specials views like thouse documented here: http://www.oracle.com/pls/db92/db92.catalog_views?remark=homepage

And, of course yuu can also use Explain PLAN FOR, TRACE tool and tons of other ways for instrumentalization. There are some reports in the enterprise manager for top SQL Queries and you can query the las queries keept on the cache.

share|improve this answer

try this (it is also free): http://www.aboves.com/Statement%5FTracer%5Ffor%5FOracle.exe

share|improve this answer

Try PL/SQL Developer it has a nice user friendly GUI interface to the profiler. It's pretty nice give the trial a try. I swear by this tool when working on Oracle databases.

http://www.allroundautomations.com/plsqldev.html?gclid=CM6pz8e04p0CFQjyDAodNXqPDw

share|improve this answer

There is a commercial tool FlexTracer which can be used to trace Oracle SQL queries

share|improve this answer

Oracle, along with other databases, analyzes a given query to create an execution plan. This plan is the most efficient way of retrieving the data.

Oracle provides the 'explain plan' statement which analyzes the query but doesn't run it, instead populating a special table that you can query (the plan table).

The syntax (simple version, there are other options such as to mark the rows in the plan table with a special ID, or use a different plan table) is:

explain plan for <sql query>

The analysis of that data is left for another question, or your further research.

share|improve this answer

This is an Oracle doc explaining how to trace SQL queries, including a couple of tools (SQL Trace and tkprof)

link

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.