The explain plan is a database utility which predicts the order of operations that will be used for optimal execution of a SQL statement and displays estimates for each step.

learn more… | top users | synonyms

1
vote
2answers
39 views

Oracle ORDERED hint cost vs speed

So, a few weeks ago, I asked about Oracle execution plan cost vs speed in relation to the FIRST_ROWS(n) hint. I've run into a similar issue, but this time around the ORDERED hint. When I use the ...
-1
votes
1answer
43 views

Oracle optimizer for executing a query

PLAN_TABLE_OUTPUT -------------------------------------------------------------------------------- Plan hash value: 2822030489 ...
0
votes
1answer
56 views

Oracle execution plan cost vs speed

When building and tuning a query in Oracle, speed is generally the main concern for the developer. However, in tuning a particular query, I recently tried the FIRST_ROWS and NO_CPU_COSTING hints and ...
0
votes
1answer
69 views

EXPLAIN PLAN needs to long

I am trying to figure out why the query needs so long, so I can optimize it. I tried it with EXPLAIN: EXPLAIN SELECT * FROM ( SELECT p.*, ol. prod_id olpid FROM products p LEFT JOIN orderlines ol ...
2
votes
3answers
155 views

understanding explain plan in oracle

I was trying to understand the explain plan in oracle and wanted to know what conditions oracle considers while forming the explain plan I was testing a simple query in HR schema present in oracle ...
1
vote
1answer
71 views

How to avoid sort when using a composite index?

Create a test table: create table customer (first_name varchar2(20), last_name varchar2(20) not null, address varchar(20)); insert into customer select dbms_random.string('U', 20), ...
0
votes
2answers
126 views

run pig explain command over the entire script in java

I am trying to find the way to run the explain command over the entire pig script in java. I was using PigServer but it offers only to do explain over the single query (alias) not the entire script. ...
0
votes
1answer
71 views

Get list of columns (and tables) in query from XML/JSON explain plan

I have approx. 200 sql statements and I need to analyze what columns and tables are used in those columns. I've found there is XML explain plan available in PostgreSQL 9.0+. Is there a known way how ...
0
votes
1answer
41 views

Is it possible to find out in which table the record is not present using Explain Plan or SQL trace

I have a query with combination of multiple tables. For example: query contains 7 or 8 tables. My query is not fetching any records. Is it possible to find out in which table the record is not ...
1
vote
3answers
100 views

mysql IN clause not using possible keys

I have a fairly simple mysql query which contains a few inner join and then a where clause. I have created indexes for all the columns that are used in the joins as well as the primary keys. I also ...
0
votes
2answers
72 views

Invalid sql statement for “Explain plan for with” statement

I am executing the following query: explain plan for with Foo as ( select * from my_table ) select * from Foo where x = 7; This results in an invalid SQL statement exception ...
0
votes
1answer
97 views

SQL Explain Plan Intrepretation - Oracle DB

Scenario: I'm getting the same explain plan (Tab Access Full and same numbers for Cost, Bytes and Cardinality) for two different queries on the same table(not indexed / no PK / no FK). Query1: ...
2
votes
2answers
191 views

How to consider Explain plan as good- Oracle 10G

When an oracle explained plan is consider good? I'm try to refactor a DB Schema, and there are so many query in view and packages that are so slow. For example, this is one of the most orrible ...
4
votes
2answers
69 views

PostgreSQLquery speed is variable

Context I have a table that keeps netflow data (all packets intercepted by the router). This table features approximately 5.9 million rows at the moment. Problem I am trying a simple query to count ...
2
votes
2answers
400 views

Why is Oracle ignoring index with ORDER BY?

My intention is to obtain a paginated resultset of customers. I am using this algorithm, from Tom: select * from ( select /*+ FIRST_ROWS(20) */ FIRST_NAME, ROW_NUMBER() over (order by FIRST_NAME) ...
1
vote
3answers
74 views

Explain plan shows 15 Exabyte amount of space needed for query utilizing analytic function and distinct

Attached is a fiddle that lays out my schema with a comment along side each table to indicate the number of rows in each of the aforementioned tables. The query looks like so, in case the fiddle is ...
0
votes
1answer
94 views

Oracle explain plan letter scheme for rows and/or bytes [closed]

I have been unable to find a resource that can clearly define what these values mean. I have a dummy explain plan below that shows all the different letters I have seen for Oracle: Rows | ...
1
vote
1answer
41 views

MySQL EXPLAIN automatic analyzing

I need to implement automatic analyzing of output of the MySQL EXPLAIN command, which will mark queries as "bad" (if which don't use indexes, for example), "middle" (which can be optimized) and ...
0
votes
0answers
49 views

Oracle group by not performing well despite having index

I have two tables: Table A:with one column:id Table B: with 2 columns :id and date A and B are joined by column id. Now I want all records from A and the corresponding latest date from B. So I write: ...
0
votes
1answer
30 views

oracle using index even though there is no filter criteeria specified

In this query: SELECT WTTEMPLATE.TEMPLATEuID, MAX (WTTRX.VALUEDATE) AS template_last_use_date FROM wttemplate, wttrx WHERE WTTEMPLATE.TEMPLATEID = ...
2
votes
3answers
515 views

Explain plan: select from 100K records table by indexed varchar2 field is not using the index

I agree with Tom Kyte about full table scan is not an evil source, but only when a table is relatively small. So, having additional index of such a table is redundant. However, a table with 100.000 ...
0
votes
1answer
95 views

Explain plan issue with group by clause in postgresql 8.4

Below is given detail explanation which is related to explain plan with group by clause problem. table: web_categoryutfv1_24hr_ts_201209 columns: "5mintime",category,hits,bytes,appid rows: 871 ...
0
votes
1answer
41 views

Not able to understand co-relation between cost keyword in explain plan with time

When I run below query explain select count(*) over() as t_totalcnt, max(hits) over() as t_maxhits, max(bytes) over() as t_maxbytes, * from ( select category,sum(hits) as hits,sum(bytes) as ...
3
votes
1answer
686 views

Oracle explain plan:Cardinality returns a huge number but the query retuns no records

I have written a complex oracle sql query and the explain plan stats look like this: Cost: 209,201 Bytes:187,944,150 Cardinality: 409,675 Now the DBA tuned the query and the stats look like this: ...
3
votes
1answer
331 views

Oracle query execution plan

I am little confused over the execution plan of an Oracle query. This is in Oracle Enterprise Edition 11.2.0.1.0 on platform IBM AIX 6.1. I have a table TEST1 (1 million rows) and another table TEST2 ...
0
votes
1answer
324 views

Analysing ORACLE EXPLAIN PLAN

Browser is getting hanged while generating jasper report[PDF format] which runs a query whose explain plan is given below. Please help to anlyse the query, is this query taking too much time? We ...
-1
votes
1answer
92 views

Convert the MySQL explain plan to string

I need to convert this +----+-------------+---------+------+---------------+------+---------+------+------+-------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows ...
-2
votes
1answer
49 views

Explain on MySQL From File

From MySQL CLI is there a way to get the execution plan of a query sourced from a file? Assuming the following query in a file some-sql.sql select * from table Called via: mysql> source ...
0
votes
1answer
63 views

mysql index not optimizing query

I have mysql MyISAM table on which I am doing a simple select id from mytable limit 1;. This just freezes the system. I tried explain select id from mytable limit 1;. Again it freezes my system. ...
2
votes
1answer
381 views

How to optimize mysql query based on explain. (Type: ALL

I run the following mysql query and see the type as ALL for the first query. mysql> EXPLAIN SELECT one.language_id as filter_id, one.language_name as ...
2
votes
2answers
3k views

difference between explain plan and execution plan

Can anyone explain me what is the difference between execution plan and explain plan. When I execute set autotrace traceonly; select * from emp where empno=7369; Execution Plan ...
-1
votes
1answer
283 views

What does it indicate when a table spool has more than one

According to MSDN, The Table Spool operator scans the input and places a copy of each row in a hidden spool table that is stored in the tempdb database and existing only for the lifetime of the ...
4
votes
2answers
235 views

How to interprete my ShowPlan(Execution Plan)

I have an access 2003 DB and I want to improve its performance ,yesterday I have read an Article about Execution Plan(Show Plan) and today I run my show Plan for this query: SELECT ...
4
votes
2answers
1k views

disable explain in Rails 3.2

Is it possible to disable the new the explain functionality in Rails 3.2 globally via configuration? I'm using activerecord-sqlserver-adapter 3.2.1 and there appear to be some bugs with the explain ...
2
votes
2answers
2k views

How to format the explain plan output in sqlplus

I believe, Question is self-explanatory. The explain plan out table in sqlplus, Looks collapsed. It is hard to interpret each line. I tried to set the linesize but it does not work. Can you able ...
3
votes
2answers
452 views

Oracle foreign key execution plan?

Consider the following (simplistic) situation: CREATE TABLE PARENT ( PARENT_ID INT PRIMARY KEY ); CREATE TABLE CHILD ( CHILD_ID INT PRIMARY KEY, PARENT_ID INT NOT NULL, FOREIGN KEY ...
0
votes
1answer
206 views

How to get off Using temporary; Using filesort from my query

Explain SELECT * FROM `EventTimes` LEFT JOIN Events on event_id=Events.id WHERE festival_id = 12 ORDER BY time; for Events table I have these fields: id name festival_id , etc. for ...
5
votes
1answer
313 views

How to find out the temp space that will be required by a sql query on a database?

we have customer who faced an issue with some inconsistent data and we gave them a query to fix it. Now before running the query, the customers asks me for a query that will give the temp space ...
1
vote
1answer
677 views

Nested loop in query over dblink (Oracle 11g)

I have a SQL query of the form SELECT ... FROM A@DB1 a, B@DB1 b, C@DB2 c WHERE A.x = B.x and B.y = C.y where the first two tables are dblinks to one database, and the last is on a second database. ...
2
votes
4answers
2k views

How can I avoid PostgreSQL sometimes choosing a bad query plan for one of two nearly identical queries?

I have a strange problem with PostgreSQL performance for a query, using PostgreSQL 8.4.9. This query is selecting a set of points within a 3D volume, using a LEFT OUTER JOIN to add a related ID ...
1
vote
1answer
208 views

Parsing output of EXPLAIN command in PostgreSQL

I'm developing an application that requires parsing of execution plans (those produced as output by issuing an EXPLAIN [query] command). Are you aware of any Java library that I could use for this ...
0
votes
2answers
78 views

cross browser rendering explain plans

I was hoping to be able to find a tool,application or script that takes IE vs Chrome or IE vs Firefox etc...and renders them, then offers an explanation as to what the difference between the two are, ...
2
votes
2answers
478 views

redundant data in update statement

Hibernate generates UPDATE statements, which include all columns, regardless of whether I'm changing the value in that columns, eg: tx.begin(); Item i = em.find(Item.class, 12345); i.setA("a-value"); ...
2
votes
1answer
83 views

Help improving a query. Trying to use EXPLAIN

I have a query that really isn't that complicated. Its taking close to 250ms to run, which is pretty slow. I've analyzed the query using EXPLAIN and noticed a seq scan. I have the proper indexes in ...
1
vote
4answers
3k views

“TABLE ACCESS BY LOCAL INDEX ROWID” high estimated costs

experts: i have a query in oracle leading to a high estimated cost in an OLAP system. the estimated row number is only 100K but the cost is a huge number. i wonder how the number of cost is ...
2
votes
2answers
80 views

Do Virtualized systems effect Explain Plans?

I'm having strange and different results for explain plans on Postgresql. Postgresql server is installed on a VMWare machine and when executing several explain plans for a given SQL query, different ...
1
vote
2answers
118 views

Explaining JSON (structure) .. to a business user

Suppose you have some data you would want business users to contribute to, which will end up being represented as JSON. Data represents a piece of business logic your program knows how to handle. As ...
4
votes
1answer
928 views

Oracle & PL/SQL Developer - Access predicates and Filter predicates no longer shown

I'm using Allround Automation PL/SQL Developer with Oracle 10g, and today I've noticed that explain plans no longer display anything for Access Predicates or Filter Predicates. The only thing that's ...
1
vote
1answer
202 views

Erlang: qlc:info throws an error while qlc:eval does not - why?

Works root@test # erl Erlang R14B02 (erts-5.8.3) [source] [64-bit] [smp:4:4] [rq:4] [async-threads:0] [kernel-poll:false] Eshell V5.8.3 (abort with ^G) 1> Tmp = ets:new(test, [bag]), Ref = ...
1
vote
1answer
376 views

Parse phase of sql statement Oracle and TOAD

Is it only the explain plan to look in when tuning a large sql string? Because when I push Ctrl+E in TOAD for Oracle (which generates explain plan), this takes several seconds. Does TOAD do anything ...

1 2 3