Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
7answers
891 views

Database Optimization techniques for amateurs

Can we get a list of basic optimization techniques going (anything from modeling to querying, creating indexes, views to query optimization). It would be nice to have a list of these, one technique ...
6
votes
9answers
602 views

What's faster IN or OR?

In T-SQL what's faster? DELETE * FROM ... WHERE A IN (x,y,z) Or DELETE * FROM ... WHERE A = x OR A = y OR A = z In my case x, y and z are input parameters for the stored procedure. And I'm ...
4
votes
2answers
44 views

How can I make MS-Access choose a different/the right execution plan for my query

I have a problem with a relatively simple query and the execution plan Access choose for it. The query is of this form SELECT somethings FROM A INNER JOIN (B INNER JOIN (C INNER JOIN D ON ...) ON ...
4
votes
5answers
196 views

Very slow stored procedure

I have a hard time with query optimization, currently I'm very close to the point of database redesign. And the stackoverflow is my last hope. I don't think that just showing you the query is enough ...
4
votes
2answers
214 views

How do I select a random record efficiently in MySQL?

mysql> EXPLAIN SELECT * FROM urls ORDER BY RAND() LIMIT 1; +----+-------------+-------+------+---------------+------+---------+------+-------+---------------------------------+ | id | select_type | ...
4
votes
3answers
464 views

Has anyone ever successfully make index merge work for MySQL?

Setup: mysql> create table t(a integer unsigned,b integer unsigned); mysql> insert into t(a,b) values (1,2),(1,3),(2,4); mysql> create index i_t_a on t(a); mysql> create index i_t_b on ...
3
votes
1answer
44 views

Using hints in oracle

I am trying to apply hints to my query but the explain plan does not change to the hint being used. my query select/*+ USE_HASH(master_flight)*/ bid, b.fno, seat, flight_date from master_booking b, ...
3
votes
4answers
111 views

Slow SQL query, not sure how to optimize

So I have to deal with a database that has no indexes (not my design, it frustrates the hell out of me). I'm running a query that takes approximately three seconds to return, and I need it to be ...
3
votes
2answers
129 views

how to optimize several “WHERE (Select … ) = value” from same table

It's hard to compose a topic name for me. But I can show an example : WHERE (SELECT [ID_Line] FROM [Event] WHERE [Event].[Name] = [A].[Col]) = 2 AND (SELECT [DataType] FROM [Event] WHERE ...
3
votes
3answers
135 views

Need to see if a range of dates overlaps another range of dates in sql

I have a table which stores bookings of rooms, the schema is: ID | ROOM_ID | CHECK_IN_DATE | CHECK_OUT_DATE | USER_ID I need to run a search query for rooms which are available/unavailable between ...
3
votes
5answers
225 views

LINQ or Entity Framework creates unbounded SQL statement

I work on speed optimization of my application, and what I have found is that LINQ (or EF) is creating some strange SQL for me that works slow. Here is some code : SomeList.AddRange(_databaseView ...
2
votes
3answers
79 views

Optimizing IN clause

I am using Oracle 10g. Here is my query select * from Entries where RefKey in (select RefKey from Entries where KeyStat = 1) and RefKey = Key; Here RefKey, Key ...
2
votes
3answers
82 views

How bad is overupdating?

I have the following query, I was wondering how bad is CASE construct, It forces DB Engine to overwrite E.EAOpID with the value that is already contained in E.EAOpID when it is not null UPDATE E SET ...
2
votes
2answers
194 views

Views works slow, must I use select into temp tables?

So I've got a serious trouble because my last query execute time is 8 minutes to get 2500 nodes. And it just combination of 2 other views. First view is : SELECT RecTime, SQL AS str, ID, ...
2
votes
5answers
198 views

Computing number of days which fall between predefined date ranges

this is a complex situation I am ain. I have a booking system where rooms are booked. The thing is that the rates for the rooms aren't stored as a single value but are period based. Like a room can ...
2
votes
2answers
236 views

Eliminating a Cross Join in SQL

I am trying to optimize a query that contains a cross join. I have large query that I proceed to cross join with a derived table. Would it improve the speed of the query by turning the derived ...
2
votes
1answer
56 views

Optimise multiple OR query

I have a Database table where I need to validate if a user has entered in the same or partly the same information. Here is what I'm thinking The db layout rec_id (pk), user_id, name, phone, ...
2
votes
7answers
103 views

SQL Optimization

How to optimize this? SELECT e.attr_id, e.sku, a.value FROM product_attr AS e, product_attr_text AS a WHERE e.attr_id = a.attr_id AND value IN ( SELECT value FROM product_attr_text ...
2
votes
2answers
79 views

How to choose a random record out of the greatest N records efficiently(not using sub query) in MySQL?

select .. from ( Select ... from ... order by weight desc limit N ) order by rand() limit 1 The above needs to create a temporary table each time,which is not efficient,so it doesn't ...
1
vote
3answers
63 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 ...
1
vote
1answer
25 views

Combining Dynamic Tables Into One Query

Is there a clean way to combine the SQL below into 1 statement? The FilterID's can be zero-length, so the Filters table is optional. So, unless there is a better way to do it, I am "forced" to use ...
1
vote
2answers
114 views

oracle order by runs terribly slow

i'm doing a query like this one and it takes 6 seconds to complete : select * from ( select aaa."ID" from "aaa" where aaa."DELETED" is null order by aaa."CREATED" desc ) where ...
1
vote
3answers
85 views

Optimizing a SQL Query for a Many to One Relationship

I've got two tables with a many to one relationship which I'll call Parent_Table and Child_Table (i.e. a parent has zero or more children, but children have exactly one parent). I need to count the ...
1
vote
2answers
74 views

Optimise SQL query for the report

This is SQL query I wrote, it work fine but it is slow. SELECT D.Username, SUM(CASE WHEN D.type = 'Yes' THEN 1 ELSE 0 END) as Yes, SUM(CASE WHEN D.type = 'No' THEN 1 ELSE 0 END) as ...
1
vote
4answers
118 views

Optimizing MySql query

I would like to know if there is a way to optimize this query : SELECT jdc_organizations_activities.*, jdc_organizations.orgName, CONCAT(jos_hpj_users.firstName, ' ', ...
1
vote
3answers
117 views

Help me to optimize hard logic on SQL

First I'll try (with my bad English) to explain what I've got and what I need to have I have got the list of Events by TimeLine. Event is some discrete signal 1/0 that happens in some time and got ...
1
vote
2answers
593 views

mysql “group by” very slow query

i have this query in a table with about 100k records, it runs quite slow (3-4s), when I take out the group it's much faster (less than 0.5s). I'm quite at loss what to do to fix this : select msg.id, ...
0
votes
1answer
31 views

understanding tracefile generated from tkprof

hey guys i am learning query optimization with oracle 10g, and having some trouble understanding the file below. could some anyone please explain the file below, its a trace file of query i ran. i ...
0
votes
2answers
42 views

Should I use an index with this query?

I have question regarding index, I am using an index on CID on customer table why because I'm querying this table as well as joining with the booking table. Schema Booking table Name ...
0
votes
0answers
24 views

would creating multiple tables instead of single be better in a lot of connections

If I'm creating a database which would be used by lot of different users at the same time constantly inserting and retrieving rows, would multiple tables be better? If not speed-wise, would it be ...
0
votes
3answers
38 views

Building a table that summarizes data about another table - Optimization suggestions?

I am trying to build a table that summarizes how many times pages in our Wiki references certain macros. I have built a temporary table called @currentpages that with 55k rows that looks like this: ...
0
votes
1answer
145 views

Optimize select query (inner select + group)

My current version is : SELECT DT, AVG(DP_H2O) AS Tx, (SELECT AVG(Abs_P) / 1000000 AS expr1 FROM dbo.BACS_MinuteFlow_1 WHERE (DT = ...
0
votes
2answers
133 views

Complex SQL query, need to sort via count based upon time constraints

Hi guys I have the following three tables here. COUNTRIES ID | Name | Details Airports ID | NAME | CountryID Trips ID | AirportID | Date I have to retrieve a list showing the following: ...
0
votes
2answers
62 views

SQL issue - how do I select all tuples which contain all references in a second table?

Heres the deal - I have three tables here: Companies: ID | NAME | DETAILS TAGS ID | TAGNAME TAGS_COMPANIES COMPANY_ID | TAGID Using a nested query I can retrieve all companies that are tagged by ...
0
votes
3answers
139 views

Query vs query - why is this one quicker than the other?

I have the following two queries - the original is the first and the second is my slight "upgrade". The first takes nearly a second to run and the second finishes before I can get my finger completely ...
0
votes
3answers
170 views

SELECT on MIN column value and CHAR column really slow in MySQL

I'm reasonable sure the answer to this lies in having a different index. I have a query that's unreasonably slow, but only when it's in the following complete form, if I remove parts of the query it's ...
0
votes
2answers
117 views

SQL Optimization to Rotate Table

I need to rotate my table , so I need to make a columns if some field (ID) got some value I made a custom query : SELECT (DT.[Date]) As RecTime , (CASE WHEN DT.ID=51 THEN DT.Value END) AS ...
0
votes
1answer
126 views

SQL: Speed Improvement - Cluttered union query

SELECT * FROM ( SELECT a.user_id, a.f_name, a.l_name, b.user_id, b.f_name, b.l_name FROM current_tbl a INNER JOIN import_tbl b ON ( a.user_id = b.user_id ...
0
votes
2answers
212 views

Optimizing UNION MySQL queries where two queries use a lot of the same tables

I am using the UNION in MySQL in order to bring together the results of two separate queries. These two queries use a lot of the same tables. Is there anyway to take advantage of this in order to ...
0
votes
3answers
105 views

Rewrite IN subquery as JOIN

I've never had good performance with IN in MySQL and I've hit a performance issue with it again. I'm trying to create a view. The relevant part of it is: SELECT c.customer_id, .... IF ...
0
votes
2answers
165 views

Most optimized way to get column totals in SQL Server 2005+

I am creating some reports for an application to be used by various states. The database has the potential to be very large. I would like to know which way is the best way to get column totals. ...
0
votes
3answers
134 views

Optimizing queries for a database using SQL/XML. Suggested resources?

This question is theoretical as well as practical. Any results indicating useful resources on optimizing queries will be appreciated. There is a large SQL database which stores a large amount of ...
0
votes
5answers
104 views

SQL Server sproc query optimization

I've got an application that generates data for reports that look like: age < 30 | age >=30 | asian | hispanic ...
0
votes
5answers
629 views

optimizing an sql query using inner join and order by

I'm trying to optimize the following query without success. Any idea where it could be indexed to prevent the temporary table and the filesort? EXPLAIN SELECT SQL_NO_CACHE `groups`.* FROM `groups` ...
0
votes
7answers
148 views

SQL (any) Request for insight on a query optimization

I have a particularly slow query due to the vast amount of information being joined together. However I needed to add a where clause in the shape of id in (select id from table). I want to know if ...