The tag refers to how to make SQL queries run more efficiently. Some of these questions may belong on DBA.stackexchange.com, especially if they involve reindexing, query plans, etc. SQL Queries can take a long time to run if written badly, or on huge amount of data. Performance can be crucial ...

learn more… | top users | synonyms

0
votes
1answer
15 views

Optimizing mysql Join query with date sorting

Simplifying the database/table structure i have a situation with two tables where we store 'items' and item properties (the relation between the two is 1-N) I'm trying to optimize the following ...
3
votes
5answers
60 views

best practice to count record in MySQL + PHP

I want to check weather number of record > 15 for a condition. What is best practice to speed up the query? 1) $query="SELECT `id` FROM `table` WHERE `name`='$name' AND `usage` > '$limit'"; ...
0
votes
0answers
6 views

use of Index over function SUM in DB2

I had a Query as Below, SELECT SUM(SOLD_QTY_CNT) AS QUANTITY, DENOM_AM, SUM(LIN_AM) AS LINE_AMT, LIN_AM AS O_LINE_AMT, ORD_DTL_ID FROM MyTable GROUP BY ORD_DTL_ID, LIN_AM, DENOM_AM ...
0
votes
2answers
38 views

How to improve the query so as to reduce the time taken?

Consider i have 15 categories and each category has 6 sub-categories and now i have items table where i have to find 3 items from each sub-category based on the latest purchased date. category 1 ...
4
votes
1answer
53 views

top-N query doing too much work in spite of STOPKEY optimization

This is going to be long, so here's a quick summary to draw you in: my top-N query with COUNT STOPKEY and ORDER BY STOPKEY in its plan is still slow for no good reason. Now, the details. It starts ...
1
vote
0answers
16 views

Using COLLECT STATISTICS in Teradata

In Teradata I can use a statement like ... collect statistics on my_table column(col1) This will gather stats on the table and store them in DBC views like ColumnStats, IndexStats and ...
1
vote
1answer
40 views

understanding perf of mysql query using explain extended

I am trying to understand performance of an SQL query using MySQL. With only indexes on the PK, the query failed to complete in over 10mins. I have added indexes on all the columns used in the where ...
1
vote
1answer
48 views
+50

How to turn queries to perform efficiently in rails?

Consider i have a 15 categories and 6 sub-categories and i have table items where i have set of records where i have to fetch in the following manner category 1 ---> level 1 ---> 3 items with ...
0
votes
0answers
47 views

Optimizing MySQL ORDER BY field of JOINed table

I have the following structure: CREATE TABLE `tbl1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tid` int(11) NOT NULL, `user_id` int(11) NOT NULL, `time` datetime NOT NULL, `count` int(11) NOT ...
0
votes
2answers
54 views
+100

Tagging query with group_concat

Using the database schema for tagging from this question's accepted answer is it possible to have a query using group_concat that works with a large amount of data? I need to get items with their tags ...
0
votes
1answer
28 views

DB2 Performance CASE vs COALESCE

I'm modifying an existing statement that joins user information in one table so that the user info can come from another table. One is a permanent table and the other is temporary (records get moved ...
1
vote
1answer
40 views

SQL JOIN query Optimization with subqueries

I used below subquery for get attached records. i need to know is it Optimized query for my task (seems within three month its exists records more than 10,000 ).then is it support for that data load.? ...
-1
votes
0answers
40 views

Optimize a mysql query on a table with 500 million rows

I have this specific mysql query: select extract(month from cs.logindate - ra.creationdate), count(distinct ra.id) from ra inner join rp on ra.id = rp.raccountid left join cs on rp.raccountid = ...
0
votes
1answer
24 views

run an execution plan directly in PostgreSQL

is it possible to run an execution plan directly in PostgreSQL? I did not find anything about it after quite some search in the PostgreSQL document and on the internet.
1
vote
2answers
51 views

Handling optional/empty data in MongoDB

I remember reading somewhere that the mongo engine was more confortable when the entire structure of a document was already in place in case of an update, so here is the question. When dealing with ...
0
votes
3answers
62 views

SQL subquery sort

Could one be so kind to assist me with a following: I have a query that results in two columns one being straight (columnA) from a table while other generated from subquery (columnB). If I do a sort ...
2
votes
0answers
38 views

How to simplify a nested SELECT with PostgreSQL arrays? [migrated]

I'm trying to speed up and simplify a SQL query against an imported OpenStreetMap database (OSM). The database is stored in a PostgreSQL 9.2.4 server. This OSM import features two particular tables, ...
1
vote
1answer
40 views

Mysql Slow Query group concat with subquery

I have following query select `cs`.sku , group_concat( IF( ( ( SELECT count(id_catalog_category) from ...
2
votes
1answer
76 views

How to do the Recursive SELECT query in Mysql?

I got a following table: col1 - col2 - col3 1 - a - 5 5 - d - 3 3 - k - 7 6 - o - 2 2 - 0 - 8 If a user searches for "1", the program will look at the col1 that has "1" then it will get a value in ...
-3
votes
1answer
45 views

MySQL query optimization for large single table [closed]

I need to ask you about making my MySQL query more efficient. I have a table of posts with 1M records. I am not using any join, and it's fetching result from database in 5-10 seconds - I don't know ...
0
votes
2answers
66 views

SQL query optimization for subqueries

I am trying to speed up a stored procedure, and have the following subqueries: SELECT ... ISNULL((SELECT Table1.Order WHERE Table2.STATUS <> 'R'),0) AS 'Order', ...
1
vote
3answers
39 views

MySQL innoDB: Long time of query execution

I'm having troubles to run this SQL: I think it's a index problem but I don't know because I dind't make this database and I'm just a simple programmer. The problem is, that table has 64260 ...
1
vote
2answers
43 views

SQL: How to select one record per day, assuming that each day contain more than 1 value MySQL

I want to select records from '2013-04-01 00:00:00' to 'today' but, each day has lot of value, because they are saving each 15 minutes a value, so I want only the first or last value from each day. ...
0
votes
1answer
35 views

How do you optimize a MySQL query that joins on itself and does a “custom” group by?

I have the following query that is starting to become slow as the size of the DB table increases: SELECT t.*, e.TranslatedValue AS EnglishValue FROM ( SELECT DISTINCT PropertyKey ...
0
votes
0answers
27 views

MySQL Query Optimization and joins

I am wondering whether my query should run faster, and whether I can make it run faster with query optimization. I have two tables, tweets and nGrams which contain about 600,000 and 13.8 million rows ...
0
votes
1answer
28 views

SQL Order By with LIMIT and OFFSET. SORT every matched rows at once

I want to create SQL sorting query with help of ORDER BY. I split result with LIMIT and OFFSET keywords so after querying single page displays 10 items. The thing is that I have to use ORDER BY for ...
0
votes
4answers
45 views

MySQL - turning data points into ranges

I have a database of measurements that indicate a sensor, a reading, and the timestamp the reading was taken. The measurements are only recorded when there's a change. I want to generate a result ...
0
votes
1answer
26 views

MySQL possible LIKE filter taking too much time

I have several tables and I need to join them. One of the tables has 200k records (this is a students table). Another one has over 1m records. I need to filter by student entry year. On this ...
0
votes
2answers
30 views

Automate mysql 'limit' in php

I'm working with a very large database and I'm not quite used to that yet. I need to cycle through 1,400 results (more being added regularly) and run functions based on each result IF criteria are ...
1
vote
0answers
27 views

Why changing a simple query parameter causes serious changes in MySQL query plan (explain)?

I'm experiencing a strange situation with examining my query in MySQL using the "explain" command. I've got a table, which has three non-unique single column index on columns "Period","X", and "Y". ...
1
vote
2answers
40 views

How to optimize SQL query with multiple SELECTs from the same table?

How can I optimizate this SQL Query? (SELECT SUM (same_field) FROM same_table WHERE other_same_field = '0') AS a, (SELECT SUM (same_field) FROM same_table WHERE other_same_field = '1') AS b, (SELECT ...
0
votes
2answers
24 views

How to store a list of each user's items in MySQL?

If each user in a site can enter a comma-separated list of items that they type in (not from a pre-determined list!), how should we store that list for each user in MySQL so that items can be matched ...
0
votes
2answers
34 views

Get all leaf elemnts of a tree using mysql

This is my first post on this blog please help me I am trying to get all the last element from a recursive query but it is taking to much time to proceed is there a better way to do this what I ...
0
votes
0answers
34 views

mysql query taking >4min with simple joins

I am wondering if there is anything I could do to speed this query up. The machine is an i7 with a 5900RPM HD. Is there anything I can do? collision sha1 does have an index and the rest of the joins ...
4
votes
2answers
68 views

MySQL ORDER BY extremely slow - even with indexes

I have got a quite complex query with many joins which runs very well without ordering. But as soon as i try to order by any of my fields it is executing extremely slow and takes about 30 seconds to ...
-3
votes
3answers
59 views

What are the ways to reduce the time taken by a Select query? [closed]

I am creating an API in JSP for my oracle database. I have two tables containing 20k records each. I need to perform a natural join, the result will be shown in a JSP page in JSON format. My problem ...
5
votes
5answers
277 views

How to make JOIN query use index?

I have two tables: CREATE TABLE `articles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(1000) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY ...
0
votes
1answer
23 views

Hibernate + MySQL. Ways to optimize selecting and loading data

I'd like to test how selecting and loading data in java application using hibernate and mysql can be optimized. I divided results I found into 2 groups MySQL indexes - for sure stored procedures - ...
-2
votes
2answers
24 views

Find if there is a line on table : count or first?

I wish to do some optimizations on my SQL queries. Without doing a performance test for it, what query is the most time-consuming ? I am almost sure they return the same result. ...
3
votes
2answers
41 views

MySQL index not being used as expected

What can I do to make mysql use the expected indices? I've got 4 tables, two containing resources, and the others containing historical changes. One pair uses indexes correctly, the other doesn't, ...
0
votes
1answer
50 views

Optimize a large MySQL query (caching or something similar?)

I'm not used to working with such big objects (hehe). I've got a query that runs through all of my subdomains from a mysql query: $blogs = $wpdb->get_results( "SELECT blog_id,path FROM ...
0
votes
2answers
29 views

Is there a way to slowdown mysql query for lower cpu usage?

I am ordering INT rows by DESC on a table with 300k rows and selecting @rownum:=@rownum+1 to update the same row's RANK field. It works perfectly but takes a long time. I can accept the longer time, ...
1
vote
0answers
23 views

Oracle - Query Transformation and SQL Trace file

I'm what you might call a novice Oracle developer trying to investigate performance issues with a particular sql query. It appears from my sql explain plan that a predicate push is happening in the ...
1
vote
1answer
37 views

How to optimize querying for thousands of IDs

Here are three consecutive queries with their Benchmark performance: ids = @Company.projects.submitted.uniq.collect(&:person_id) 1.370000 0.060000 1.430000 ( 3.763946) @persons = ...
1
vote
1answer
17 views

Optimize query get total call duration of day per subscriber

I have view HW02 created from table call_details having following structure. pri_key | calling_no | called_no | answer_date_time | Duration and I have to find total duration called by each ...
1
vote
1answer
19 views

Why is MySQL showing index_merge on this query?

I have what seems like a fairly simple table structure, however MySQL is defaulting to a less than optimal index_merge on a simple query. Here's the table structure: CREATE TABLE IF NOT EXISTS ...
0
votes
3answers
53 views

Making SQL query faster

I currently have an SQL query that is taking a LONG time to load, wondered if anyone could help me? I'm fairly new with MySQL. This is the query: SELECT applicationid FROM logs WHERE action = ...
0
votes
1answer
23 views

Best practices for managing simple “description” tables

The application I'm working has contains lots of small tables that simply hold descriptive data (sex, entity type, marital status, primary branch, customer size, etc.). We have about 40 of these ...
-1
votes
1answer
57 views

Query optimization in Oracle SQL

Let's say I have an oracle database schema like so: tournaments( id, name ) players( id, name ) gameinfo( id, pid (references players.id), tid (references tournaments.id), date) So a row ...
0
votes
1answer
31 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 2 3 4 5 41