The query-plans tag has no wiki summary.
13
votes
3answers
429 views
Is there a way to programmatically convert a SQL Server query plan to an image?
I'd like to be able to convert SQL Server query plans from XML to images. Ideally a vector format, but a bitmap would do.
Is there an open source library to do this? Or can I use one of the SQL ...
10
votes
2answers
494 views
SELECT TOP is slow, regardless of ORDER BY
I have a fairly complex query in SQL Server running against a view, in the form:
SELECT *
FROM myview, foo, bar
WHERE shared=1 AND [joins and other stuff]
ORDER BY sortcode;
The query ...
7
votes
2answers
924 views
Physical operators in SQL Server execution plans: what are rebinds, rewinds and number of executions?
I'm trying to understand physical operators in SQL Server execution plans. This page is quite helpful:
http://technet.microsoft.com/en-us/library/ms191158.aspx
SSMS 2008 shows some physical operator ...
6
votes
5answers
196 views
Why does putting a WHERE clause outside view have terrible performance
Let's say you have a view:
CREATE VIEW dbo.v_SomeJoinedTables AS
SELECT
a.date,
a.Col1,
b.Col2,
DENSE_RANK()
OVER(PARTITION BY a.date, a.Col2 ORDER BY a.Col3) as Something
FROM ...
5
votes
1answer
151 views
How can a table scan return more rows than are in the table?
I have a complex query on a database with bad statistics and fragmented indices. What I'm puzzled by is that when I examine an actual query plan I get 54 M rows from a table scan on a table that has ...
3
votes
1answer
77 views
Oracle plan for comparing 'b' vs. 'B' 998x as slow (10g or 11g)
Have a query to set records as bad by comparing with another table. To save time, I exclude records that have already been marked as 'bad'.
I wrote a query, but accidentally checked for != 'b' ...
3
votes
2answers
70 views
Preferred method of T-SQL if condition to improve query plan re-use
I want to understand which is the better method of implementing a "IF" condition inside a stored procedure.
I have seen this method used extensively. Which is comparable to iterative coding...
...
3
votes
4answers
119 views
Why does SQL Server use a non-clustered index over the clustered PK in a “select *” operation?
I've got a very simple table which stores Titles for people ("Mr", "Mrs", etc). Here's a brief version of what I'm doing (using a temporary table in this example, but the results are the same):
...
3
votes
3answers
140 views
query plan shows cost of 54% for an insert when no rows actually involved
In one of my queries there's an insert of data into a temp table. Looking at the query plan, it shows the the actual insert into temp table took 54% (just inserting data into temp table). However, no ...
2
votes
2answers
51 views
ADO.NET Commands and SQL query plans
I've been reading up on query plans and how to minimise duplicate plans being created by SQL Server for the same basic query. For example, if I understand correctly, sending queries with inline values ...
2
votes
3answers
1k views
SQL Server: Table-valued Functions vs. Stored Procedures
I have been doing a lot of reading up on execution plans and the problems of dynamic parameters in stored procedures. I know the suggested solutions for this.
My question, though, is everything I ...
2
votes
4answers
174 views
Oracle SQL query - unexpected query plan
I have a very simple query that's giving me unexpected results. Hints on where to troubleshoot it would be welcome.
Simplified, the query is:
SELECT Obs.obsDate,
Obs.obsValue,
...
1
vote
1answer
35 views
SQL union optimized into a left join, faster but Query Plan says cost more I/O
select id, c.name as name
from a join b on a.id=b.id
join c on a.id=c.id
union
select id, d.name as name
from a join b on a.id=b.id
join d on a.id=d.id
optimized to
select id,
case when ...
1
vote
1answer
24 views
Are parameterized queries automatically cached by ODBC?
I understand that query plans for parametrized queries are cached, but at what level? If I drop my connection does that drop the query plan? If I used a different command object does that drop the ...
1
vote
2answers
169 views
CTE query plan for complex query - triple run of the same init query - why?
It's difficult to explain, but I'll try.
As you see on query_plan picture attached (It is query plan for "All in one place" query described below), there are 3 almost the same "blocks" - my ...
1
vote
2answers
203 views
Query performance for criteria against date ranges
Here's a table:
CREATE TABLE Meetings
(
ID int PRIMRY KEY IDENTITY(1,1)
StartDate DateTime NOT NULL,
EndDate DateTime NULL,
Field1 varchar(50),
Field2 varchar(50),
Field3 varchar(50),
...
1
vote
3answers
344 views
How does DateTime.Now affect query plan caching in SQL Server?
Question:
Does passing DateTime.Now as a parameter to a proc prevent SQL Server from caching the query plan? If so, then is the web app missing out on huge performance gains?
Possible Solution:
I ...
1
vote
1answer
170 views
What does SQL Server trace flag 253 do?
In another question I was trying to research how to control SQL Server's query plan caches:
...
0
votes
1answer
16 views
Modify Postgres 9.0 query plan
I'm looking for more information how to modify Postgres 9..0 query plan.
I have query:
SELECT
max(creation_date)
FROM
statistics_loged_users
WHERE
school_id = 338 and
group_id ...
0
votes
1answer
24 views
Does query plan get recomputed if we close and reopen a prepared statement?
Need some insight on how this works
I have the following piece of code
public static void updateOrdersPrepared(int productId , String productName){
Connection con = getConnection();
...
0
votes
1answer
79 views
SQLite: Downsides of ANALYZE
Does the ANALYZE command have any downsides (except a slighty larger db)? If not, why is not executed by default?
0
votes
2answers
125 views
Why does postgresql planner not use index scan instead of explicit sort within a stored function?
I have a function that executes a query with ORDER BY clause. When I call this function, postgres gets stuck, but when I execute the query with the values I pass to the function, it responds ...
0
votes
3answers
59 views
How to capture actual execution plan in a deadlock graph?
Is there any option or any setting by which SQL Server can dump the actual execution plan (at that instance) for stored procs involved in a deadlock?
This is in context of SQL Server 2008.
0
votes
0answers
65 views
Change query plan when using CONTAINS clause
In SQL Server, what options do we have for modifying a query plan when the query uses CONTAINS?
I am getting bad performance and would like to change the query plan for the following query:
SELECT ...
0
votes
0answers
124 views
BULKCOPY slow/timeouts after purging and updating statistics
We're doing some testing and this involves doing a delete (to several tables) which we then update the statistics.
We're running 5 bulk copies of 2000 rows in a single transaction (about 50 of these ...
0
votes
1answer
221 views
SQL Server 2008: Join VIEW with other VIEW: precalculate without resorting to temp tables
To perform transformations in my database, I frequently use a chained set of views. Within the views will be common table expressions. For example I would have the following:
CREATE VIEW ...
0
votes
1answer
477 views
Postgres EXPLAIN ANALYZE is much faster than running the query normally
I'm trying to optimise a PostgreSQL 8.4 query. After greatly simplifying the original query, trying to figure out what's making it choose a bad query plan, I got to the point where running the query ...
0
votes
2answers
411 views
No query plan for procedure in SQL Server 2005
We have a SQL Server DB with 150-200 stored procs, all of which produce a viewable query plan in sys.dm_exec_query_plan except for one. According to ...
-1
votes
1answer
113 views
Different query plan to the same query ! [closed]
Possible Duplicate:
how that happen SP sql server
hello, I get something weird. i ran this sql:
SELECT Id , GameTypeId , PlayerId , BetAmount , Profit ,
DateAndTime
...