The query-execution-plans tag has no wiki summary.
-1
votes
0answers
41 views
Is execution plan for my query weird?
I have the following query:
SELECT co.object_id, co.object_alias, cm.method_alias, dr.data_value,
cd.data_uom, dr.date_timestamp, dr.delay_value, dr.delay_pct
FROM chroniker_object AS co
JOIN ...
1
vote
0answers
28 views
Actual and estimated execution plan in SQL Server 2008
I am testing query processing in SQL Server 2008.
Query
SELECT * FROM Student;
I checked the estimated query plan and actual query plan. Both look the same. Below is the tool-tip I got for the ...
0
votes
1answer
32 views
Explain in MySQL of key_len in this table
I have a table that has a column:
| last_name | varchar(1000) | NO | MUL | NULL | |
I created an index on this column:
CREATE INDEX lastname_idx ON employees(last_name);
When I ...
1
vote
2answers
36 views
Copy Stored Proc Execution Plan to Another Database
Setup:
Using SQL Server 2008 R2.
We've got a stored procedure that has been intermittently running very long. I'd like to test a theory that parameter sniffing is causing the query engine to choose ...
1
vote
2answers
180 views
hash value for sql statement
When we execute any sql statement in Oracle, a hash value is being assigned to that sql statement and stored into the library cache. So, that later, if another user request the same query, then Oracle ...
5
votes
2answers
96 views
How this query generates two join operators in execution plan?
Table structure with a clustered unique index on empno.
CREATE TABLE [dbo].[EMP](
[EMPNO] [int] NOT NULL,
[ENAME] [varchar](10) NULL,
[JOB] [varchar](9) NULL,
[MGR] [int] NULL,
...
-1
votes
1answer
30 views
DB2 Plan table method
Which of the method value given in a plan table row is better when a join is involved in tables?
method=1, nested loop join
method=2, merge scan join
method=4, hybrid join
2
votes
1answer
117 views
Is this long running select query running optimally?
I have a long running query (~10 minutes) that is generated by an application which I cannot control. However the underlying tables that the query runs on are in my control. I am pasting the query and ...
0
votes
0answers
70 views
INNER JOIN and IN give same execution plans. Why get different performance then?
I have an T-SQL SELECT (only INNER JOIN) with 2 levels INsub. Have flattened it with Inner Joins.
I get the same execution Plan, meaning optimizer does the Flat anyways.
On SQL Server WITH RECOMPILE ...
3
votes
3answers
98 views
How can i avoid an extra inner join to optimize this query?
Is there any way where I can avoid the inner join to get the customer firstname, and lastname from customer table and how can i optimize the execution plan?
SELECT c1.firstname, c1.lastname, t.*
FROM ...
2
votes
3answers
152 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 ...
3
votes
2answers
146 views
The Same SQL Query takes longer to run in one DB than another DB under the same server
I have a SQL database server and 2 databases under it with the same structure and data. I run the same sql query in the 2 databases, one of them takes longer while the other completes in less than 50% ...
19
votes
3answers
573 views
Oracle prepared statement hangs
There is next partitioned table:
CREATE TABLE "ERMB_LOG_TEST_BF"."OUT_SMS"(
"TRX_ID" NUMBER(19,0) NOT NULL ENABLE,
"CREATE_TS" TIMESTAMP (3) DEFAULT systimestamp NOT NULL ENABLE,
/* other ...
0
votes
0answers
21 views
Query expansion, which term to expand?
Suppose we have a query with the following term:
A and B and C and D
Now suppose the query is too restrictive, and we want to expand the query, but is there already a way to find which term to ...
1
vote
1answer
69 views
The same SQL runs slower or faster with the same parameters [duplicate]
I have a query that runs extremely fast (1 sec) see below:
SELECT *
FROM ( select ROW_NUMBER() OVER ( ORDER BY [Rank] DESC ) AS RowNum, *
FROM [product].[FnSearchKeyword]('basic', null, ...
0
votes
0answers
20 views
MySql Execution plan - Empty table
I have two complex mysql queries that use a calculated value when querying, hence no index. These two queries run hundreds of times a second as users connect with our system. The table in question is ...
1
vote
1answer
77 views
Oracle - why is this paging code not using the stopkey optimization
I've run across a strange situation regarding a paginated query and the stopkey optimization on 11G (I've been able to reproduce on full 11G as well as XE installs). I'm using the alexa top 1M sites ...
3
votes
1answer
77 views
MySQL: random effect on ANALYZE TABLE
I have got 3 innodb tables, say A, B, and C. There is a query to join these three tables to generate results.
SELECT A.a, B.b, C.c
from A
join B on A.id = B.a_id
join C on C.id = B.c_id
where A.a = ...
1
vote
1answer
61 views
SQL Server 2005 cached an execution plan that could never work
We have a view that is used to lookup a record in a table by clustered index. The view also has a couple of subqueries in the select statement that lookup data in two large tables, also by clustered ...
4
votes
1answer
76 views
MySql query clause affects no records but affects execution plan
Looking at the results of an EXPLAIN on my query shows
id select_type table type possible_keys key key_len ref rows extra
1 SIMPLE p range {null} ...
5
votes
1answer
199 views
Find out the slow running stored procedure [duplicate]
Possible Duplicate:
How to find slowest queries
In Sql Server 2008, is there any option to find out which stored procedure running slowly among all (When the no. of stored procedures is ...
2
votes
1answer
159 views
How does SQL Server utilize the query plan if the stored procedure is used for bulk select and single row select?
I've got a stored procedure that is used to process about 90,000 records to return various information; which I just join to a SQL table to filter down the records to run for (which is loaded from ...
0
votes
1answer
108 views
SQL Server - wrong execution plan?
I have a very big table with a lot of rows and a lot of columns (I know it's bad but let's leave this aside).
Specifically, I had two columns - FinishTime, JobId. The first one is the finish time of ...
0
votes
0answers
90 views
Getting all SQL query plans in SQL Server 2008
I have tried to get the estimated execution plan in SQL Server Management Studio 2008.
As far as I know the it always returns the best query plan, as an execution plan. Right now I'm working on a ...
0
votes
0answers
76 views
Why the same query takes more time in two different servers? [closed]
I have two MySql servers ONE (Version 5.0.32) and TWO (Version 5.1.63)
If I run the same query in the two servers, I get, in ONE: 0.07 sec and in TWO: more than 1 minute.
I've passed the EXPLAIN test ...
-2
votes
1answer
40 views
when to run an execution plan against a sql server database [closed]
I have recently create 4 brand new sql server 2012 databases. I have applied constraints, primary, foreign keys etc. I am happy with the relationships etc.
At this point I want to ensure that all ...
1
vote
1answer
88 views
Can I control the way SQL Server handles its execution plan?
Situation:
I often have (no comments on database, it is history :)) columns where values are separated.
So let's say we have a column params which contains for example 1,2,3,4,5.
If I need the ...
2
votes
3answers
514 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
268 views
sql using different execution plans when running a query and when running that query inside a stored procedure?
I have this query,
Declare @Prcocessrate float
declare @item varchar(20)
declare @process varchar(20)
declare @branch varchar(20)
set @item = 'shirt'
set @process = 'kt'
set @branch = '1'
select ...
3
votes
1answer
328 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
192 views
How to read the hints in SQL Server Management Studio execution plan
I am having difficulties understanding the hints in the execution plan you can get through SQL Server Management Studio. Here is an example (simplified, but everything is included)
Index Seek ...
2
votes
3answers
174 views
Select columns affect execution plan?
I have a query something like this. It has an execution plan using an index that I expect, up until the amount of data (i.e. the number of characters) returned by the SELECT goes over a boundary. At ...
4
votes
3answers
165 views
How to figure out query time
I have this very long SQL command with a lot of JOIN and UNION statements.
I opened up Explain Plan Window, but I can't tell what Cost, Cardinality, or Bytes mean.
Can someone please explain those ...
3
votes
3answers
160 views
how can i see the execution plan
I'm learning about database indexes right now, and I'm trying to understand the efficient of using them.
I'd like to see whether a specific query uses an index.
I want to actually see the ...
2
votes
1answer
99 views
Nonclustered Index Insert Showplan Operator - Missing?
I have seen several execution plan examples and they displayed "Nonclustered Index Insert Showplan Operator". I went ahead and created a table with non-clustered index.
If I insert there and display ...
7
votes
2answers
230 views
PostgreSQL: The lower the LIMIT, the slower the query
I have the following query
SELECT translation.id
FROM "TRANSLATION" translation
INNER JOIN "UNIT" unit
ON translation.fk_id_unit = unit.id
INNER JOIN "DOCUMENT" document
ON ...
1
vote
1answer
156 views
Execution Plan - Hash vs. Merge in sql vs. Stored Procedure
I've got a problem with a terribly performing stored procedure. The odd part is that if I run the procedure it takes hours. If I run the contents of the procedure as a batch in ssms, it runs in a ...
1
vote
2answers
205 views
SELECT query poor execution plan with “WHERE A=1 OR A=2 clause”
We currently have a LOGS TABLE divided with multiple logbooks numbers (column XLOG), and accessed within a limited time range.
The table is declared with a clustered 'natural' primary key, where XLOG ...
-1
votes
1answer
118 views
MySql execution plan changes with larger data set [closed]
Given SQL query:
SELECT DISTINCT h.hid,h.name, hg.gid FROM h, hg
WHERE (hg.gid IN ('12','13','14','11','10','7','8','9','6'))
AND hg.hid=h.hid AND h.hostid BETWEEN 0 AND 99999999999999
Why does ...
0
votes
2answers
243 views
What exactly is saved in SQL Server Statistics? When they get updated? Is SQL Server itself is taking care of them?
I have been working with SQL Server as a Developer a while.
One thing I learnt is SQL Server manages Statistics which help Engine to create optimized execution plan.
I could not figure out what ...
6
votes
2answers
1k views
Query executes slower after indexes are created and dbms_stats compute is used
I have a table with 1.5 million rows. I run a query which fetches records having non repeating values in a column. I am observing a behaviour in which after creating indexes the performance of the ...
0
votes
2answers
90 views
Execution Plan for a long stored proc cuts off. How to view it in SSMS?
I am trying to look at an execution plan for a sproc that has a massive amount of statements, looping, etc... As you can imagine, the execution plan is really long. In fact, SSMS gets confused ...
1
vote
1answer
225 views
unable to select certain records in TSQL without using a range, between, etc
On a SQL Server 2008 R2 database I have a table with a single integer as a primary key. Sometimes when I perform a select on the primary key I get no results, but if I do a search for all records on ...
-1
votes
1answer
116 views
different values for cache plan size in plan cache and in execution plan
Just found that for a query running in sql server 2012 .. the cache plan size in actual execution plan gives the size as 16KB where as the plan cache the value is 24KB(24576 bytes)..
any idea y is it ...
2
votes
3answers
1k views
Postgres query is very slow when using a parameter instead of an hardcoded string
I am running into this Postgres issue where the same query takes a long time to execute if I use a parameter vs hardcoding its value on the query string. The column name is 'media_type' and it's a ...
2
votes
1answer
170 views
TSQL IVF causing timeout in ASP.net application
Hi and thanks for your attention.
First some background on the question:
I have an Inline Table Function which is used ubiquitously throughout an ASP.net application I have developed, running on ...
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
843 views
Oracle Explain Plan for Query with Collection using Table function
How to generate Plan in Oracle for the query using some Collection in exists clause using table function
e.g.
CREATE TYPE TYP_EMP AS OBJECT(
EMPNO NUMBER(4),
ENAME VARCHAR2(10),
JOB ...
5
votes
1answer
126 views
Why is row count 0 in my PostgreSQL plan?
I have a query which is equi-joining two tables, TableA and TableB using a nested loop. Because of the "equi"-join contraint, all rows returned in the result will therefore correspond to at least one ...
0
votes
4answers
94 views
Cached Query plans?
Query plans are stored in the plan cache for both views and ordinary
SQL
from here
ok.
Once and for all : How does it help me ?
Even if I have the Query plans in the cache for a query : Once ...


