This tag pertains to performance issues with Structured Query Language (SQL).The performance bottlenecks faced when managing data in relational database management systems. This tag is for specific questions related to performance improvement on back-end.

learn more… | top users | synonyms

1
vote
3answers
61 views

SQL Query optimization : Taking lots of time

I am having the following query used to retrieve a set of orders: select count(distinct po.orderid) from PostOrders po, ProcessedOrders pro where pro.state IN ('PENDING','COMPLETED') and ...
0
votes
0answers
43 views

Oracle view logic or performance tuning on case expression

I have written a view logic to extract the data based on the requirement. I need the suggestion or solution to improve the performance of the view logic. MYTABLE: |SID | SREF | STYPE | SQID ...
0
votes
2answers
31 views

Regarding Performance Benefits of WHERE clause conditions order

Consider 3 tables (* for primary key, + for foreign): User {*id:INTEGER, name:VARCHAR(45)} Flight {*id:INTEGER, service:VARCHAR(45), departureDate:DATETIME} Reservation { +userId, +flightId } Data: ...
6
votes
1answer
80 views

Does order of items in an SQL: WHERE IN () matter?

Does the order of the values in a WHERE IN clause matter? (this is on Firebird SQL if that is important) Such as does: where field1 in (1, 2, 3, 4, 5, 6, 7, 8, 9, 10) offer a performance increase ...
1
vote
0answers
58 views

why query shows in suspended task state and LCK_M_X wait type

I am working on winform application using C# 4.0, back end SQL SERVER 2012. Some time, my software seems to be hang, because queries become pending, because one query shows in activity monitor in ...
0
votes
0answers
109 views

How do I improve the following SQL that has self-join

After doing a select, I am doing a self-join and a distinct on the data. I am not sure if there is a better way to write this query. Could you suggest? Below is the Query, and the explain plan ...
0
votes
1answer
115 views

Partition table but group together based on multiple columns

I have an interesting problem with partitioning a table into groups. I have a group of Tourists - each speak a single language and/or are part of a family. I need to partition the table into groups, ...
0
votes
0answers
34 views

SQL Profiler shows unlogic reads count when using table-types

Wanted to Analyse the reads of one of our procedures which uses a user-defined table type as the procedure Argument. While separating the individual queries, the SQL Profile showed me strange Reads ...
5
votes
1answer
96 views

SQL Hint to load entire table into RAM before execution?

I'm running some aggregation queries on some very large tables in an OLAP environment. I'm currently bottlenecked by disk IO at 200 MB/s. I'm doing these queries on a machine with 92 GB of RAM. Is ...
0
votes
1answer
73 views

How do I speed up the execution of my sql query that generates category breadcrumbs for over 458,000 records?

I was messing around with the Nested Set Hierarchy Model and have a category table called CategoryNest with the fields CategoryID int identity, CategoryName nvarchar(100), L int, R int, CreatedOn ...
0
votes
3answers
56 views

My SQL Query is very slow with 50K+ records

I have a table called links in which I am having 50000 + records where three of the fields are having indexes in the order link_id ,org_id ,data_id. Problem here is when I am using group by sql ...
0
votes
1answer
53 views

SQL performance replace

I have the following query which I need to improve performance DECLARE @number varchar(40) = '0800001001' SELECT Id FROM Table1 WHERE (REPLACE(Phone1, ' ','') = @number) OR ...
0
votes
1answer
136 views

SQL Server CE 4 very poor performance on XP SP3

I have a SQL Server Compact 4.0 database with Entity Framework 4.3 and Encryption enabled with Platform Default mode and this is its connection string: Data Source={Database ...
0
votes
2answers
66 views

Performance in these two SQL scenarios

I had assumed the first call below was more efficient, because it only makes this check once to see if @myInputParameter is less than 5000. If the check fails, I avoid a query altogether. However, ...
2
votes
1answer
71 views

How to make 2 queries use 2 CPUs

I have a query of the following shape : A UNION ALL B UNION ALL C UNION ALL D And would like to parallelize it by calling A, B, C and D in parallel and then, union them in .Net. Those 4 queries all ...
0
votes
0answers
54 views

What should i configure to able insert huge data to my INNODB tables?

I insert big data to my tables. Some of the tables not insert the data because to much rows. How should be number of rows enlarged in INNODB? (I try ALTER TABLE table MAX_ROWS=1000000000, after i ...
0
votes
3answers
188 views

SUBQUERY total performance vs case sum performance

I have to do sum of some columns basis on where clause for better understanding i am implementing a temporary table here declare @tbl table(a int ,b int,c int) insert into @tbl values(1,2,3) insert ...
1
vote
1answer
261 views

Best practice with mysql innodb to rename huge table when table with same name already exist

I Use Mysql 5.5.. + INNODB and windows server. The case(make it simple then real case): I have 2 tables 1GB with name new_car and car table 1GB. I to replace car table with new_car table every 10 ...
3
votes
4answers
205 views

SQL Server 2012 poor performance when selecting using LIKE from a large table

I have a table with ~1M rows and run the following SQL against it: select * from E where sys like '%,141,%' which takes 2-5 seconds to execute (returning ~10 rows), I need it to be 10 times faster ...
1
vote
1answer
98 views

SQL Server 2012 Strange Performance

Is it the norm for a query like: update A set TextField = 'U' to take 2 minutes to execute on a table with 2M records? The table has no PK, no indexes, but I'm not using where either.
0
votes
2answers
2k views

SQL UPDATE: Multiple columns in one statement or multiple single-column statements?

Is it more efficient to execute one UPDATE statement with multiple columns UPDATE myTable SET [col1] = [col1] + 1, [col2] = [col2] + 1, [col3] = [col3] + 1, ... [colN] = [colN] + 1 or multiple ...
0
votes
5answers
403 views

getdate() performance issue sql server 2000

I have a table with fallowing columns symbol |market| bid_price | ask_price | update_time ------- ------ ----------- ----------- ------------ ABC US 123.00 675.00 20012-09-10 ...
1
vote
3answers
419 views

Simple Self Join Query Bad Performance

Could anyone advice on how do I improve the performance of the following query. Note, the problem seems to be caused by where clause. Data (table contains a huge set of rows - 500K+, the set of ...
0
votes
3answers
64 views

Way to know the amount of data generated by a given query?

Typically, it is possible to know how many lines a query returns by using COUNT(*). In the same manner, is there any way know how many megabytes for example the output of a given query is ? ...
0
votes
1answer
28 views

Optimizing JOINs : comparison with indexed tables

Let's say we have a time consuming query described below : (SELECT ... FROM ...) AS FOO LEFT JOIN ( SELECT ... FROM ...) AS BAR ON FOO.BarID = BAR.ID Let's suppose that (SELECT ... FROM ...
1
vote
1answer
74 views

Should my view be much slower than my stored proc?

I have a view that I can't seem to fully tune, so I tried converting it to a proc, moving one of my WHERE conditions that I use when querying into a parameter and using the parameter in my derived ...
2
votes
6answers
1k views

Should every User Table have a Clustered Index?

Recently I found a couple of tables in a Database with no Clustered Indexes defined. But there are non-clustered indexes defined, so they are on HEAP. On analysis I found that select statements ...
1
vote
2answers
340 views

Performance on Large volume heavy read load data on SQL Server 2008

I have a performance issue. We have a table which goes in to a couple of million records and we are serving up a web page which hits this table 100's of times every second (a select). The query is ...
1
vote
2answers
196 views

How to execute query without displaying result?

I want to test performance of some queries by executing it multiple times in SQL Server Management Studio and comparing statistics. My problem is that this method isn't accurate because after every ...
0
votes
1answer
89 views

In SQL Management studio, what is the overhead of displaying the result of a SELECT statement?

When you perform a SELECT over a large table in SQL Management Studio by default, the result is displayed in a Grid table. As we can imagine, when the result set is million lines long, the data will ...
0
votes
3answers
77 views

sql perfomance on new server

My database is running on a pc (AMD Phenom x6, intel ssd, 8GB DDR3 RAM and windows 7 OS + sql server 2008 R2 sp3 ) and it started working hard, timeout problems and up to 30 seconds long queries after ...
1
vote
3answers
74 views

How to know if the SQL query is efficent according to the setup of the tables in the db?

Is there any way I can check if my sql query is performing at its best? Im using sql server 2008. E.g. I would like to know if my query hits the expected index.
1
vote
1answer
164 views

Performance issues with internal query from MS Access against SQL Server

We have an application that runs in MSAccess but utilizes SQL Server as the backend database. This generates a query to check which views it's got access to, and for normal users this takes up to 18 ...
0
votes
1answer
119 views

Dealing with large tables performance in SQL Server 2000

I have a table tbl_ECR_ProductData with nearly 92356143 rows. Weekly 100000 rows are imported into this table. The table has 16 columns, 2 of those columns make up the primary key, the remaining ...
1
vote
0answers
236 views

What is the best performance of design for my tables?

I have 3 tables that they can be on 1table. What is the best performance for its design? I need a fast database on search and read, not on insert. These 3 tables will be read too more than be ...
3
votes
1answer
152 views

Why inner join with a filtered table more slowly than that without filtering?

SQL server 2008 on WINDOWS 2008 Please compare following sqls: 1. select count(*) from Trades t inner join UserAccount ua on ua.AccID = t.AccID 2. select count(*) from Trades t inner join ( ...
1
vote
1answer
95 views

Regarding Sql Profiling

I want to know how to use the sql profiling tool for sql server 2008. for the anjlab sql profiler what filters should be set in order to get the exact query??
1
vote
1answer
204 views

SQL Server 2005 CTE performance lots of logical reads

I have a CTE query that seems to be causing an awful lot of logical reads (or perhaps it doesnt). I have run SQL Server Profiler traces, and this query seems to be causing consistently one of the ...
0
votes
2answers
116 views

SQL Performance - Union and Subselects

I have three tables which have a common field which is NOT its identifier. For example: dairy_warehouse -dairyId (primary key) -expiration_date -other dairy related fields ...
-1
votes
2answers
296 views

Check for data existence in multiple tables

To check for an Id existence in multiple tables (10 - 15 tables) what will be best option? In point of performance. Using Joins Using individual query for each table (called from DAO of Spring). ...
1
vote
3answers
226 views

Optimizing DISTINCT SQL query with OR conditions

I have the following SQL query: SELECT DISTINCT business_key FROM Memory WHERE concept <> 'case' OR attrib <> 'status' OR value <> 'closed' What I try to achieve is to get all ...
0
votes
0answers
35 views

In EF SQL queries, which is much faster, two 'using' blocks or one, or are they about the same in speed?

Which of the two below query methods, employing Entity Framework 4.0 to generate the SQL query, is significantly faster? The first uses two 'Using' blocks, while the second uses just one. Both ...
0
votes
2answers
253 views

SELECT a FROM T + Select b from T, or SELECT a,b FROM T? H2 Database

Which one is faster using the H2 database? SELECT a FROM T and after Select b from T or SELECT a,b FROM T
0
votes
5answers
247 views

SQL - how to efficiently select distinct records

I've got a very performance sensitive SQL Server DB. I need to make an efficient select on the following problem: I've got a simple table with 4 fields: ID [int, PK] UserID [int, FK] Active [bit] ...
1
vote
1answer
74 views

Using User Defined Functions and performance?

I'm using stored procedure to fetch data and i needed to filter dynamically. For example if i dont want to fetch some data which's id is 5, 10 or 12 im sending it as string to procedure and im ...
2
votes
3answers
234 views

How to handle in an effective way duplicate key insertions w/out throwing an exception

My case scenario passes parameter to a procedure, that only does an insert. But two threads might try to pass the same value. How to handle this situation w/out throwing an exception and with least ...
1
vote
5answers
119 views

Making multiple round trips vs using a temp table?

I need to save a list of records with a few columns. I got two ways to do that. I can simply create a list of that element and execute the stored procedure multiple times from within the code ...
1
vote
3answers
281 views

Does SQL Server propagate WHERE conditions in complex views?

I've followed this question with a full example in case it isn't clear what I mean from the question. I've made a view which joins data from about five tables. The tables have vast amounts of data ...
0
votes
3answers
353 views

SELECT clause using IN … very slow?

Could you guys please review the following query to an Oracle DB and point out what's wrong: SELECT t1.name FROM t1, t2 WHERE t1.id = t2.id AND t2.empno IN (1, 2, 3, …, 200) Query statistics: ...
0
votes
1answer
263 views

Performance based on searching a integer or a long string (unqiue) in database?

I have a 5 column in database and two are unquie column (one is integer and another is a string). integer are like 1,5,6,7,9,0 and string are like http://xyz.com/Book-on-the-self-no-2 now which ...

1 2