The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
59 views

@ Symbol - a solution for Recursive SELECT query in Mysql?

there are a lot of questions about Recursive SELECT query in Mysql, but most of answers is that "There NO solution for Recursive SELECT query in Mysql". Actually there is a certain solution & I ...
1
vote
2answers
41 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. ...
1
vote
2answers
18 views

Not efficient execution plan taken by MySQL InnoDB

I have trouble to optimize a request with the MySQL InnoDB optimizer. The following query (query 1) runs efficiently: explain select * from ah_problems where rnid in (6022342, 6256614, 5842714, ...
1
vote
1answer
54 views

Nested GROUP BY optimization

I have the following query: SELECT trip_id, MAX(cnt) FROM ( SELECT trip_id, stop_id, COUNT(*) as cnt FROM operation_ticket_part_stops GROUP BY trip_id, stop_id ) AS t GROUP BY trip_id ...
0
votes
1answer
57 views

Advices/tips on optimizing an Oracle SQL query executing on significant volumes

Don't run just after seeing the Oracle SQL query below ! :) I put the complete query in ordrer to ask for some advices on optimizations. I used the Oracle explain plan tool to help me identify some ...
5
votes
1answer
83 views

MySQL query optimization: how to optimize voting calculations?

Hope you're doing fine. I need a help a bit with this database: This is a database that stores votes. Users pick the audio tracks they like, and they vote for them. They can vote 'up' or 'down'. ...
3
votes
4answers
91 views

SQL - Too many calls to subquery

The below query is fairly slow, in terms of the subquery selection for the "skill name". When I run a profile against the SQL execution I am getting far too many queries per line from the ...
1
vote
2answers
126 views

mysql peformance INSERT into table SELECT for report

I am working on a mysql query for a report. The idea is to have a simple table say 'reportTable' with the values being fetched from various places. I could then use the reportTable more easily ...
0
votes
0answers
110 views

How to Speed Up MySQL Group By Query Within Date Range [closed]

Am having trouble reducing response time on a query we were hoping to provide for a customer-facing web application. The table structure is as so: delimiter $$ CREATE TABLE `test_table` ( ...
0
votes
2answers
51 views

Does setting MaxDOP on Database level restrict CPUs for that DB or for Queries ran in that DB?

We have a CPU with 16 cores. The CPU is used only for SQL server with a single database. Currently, MaxDOP is set to 0. We were considering changing the MAXDOP to 8 in an attempt to limit the max ...
2
votes
4answers
108 views

Sqlite database optimization

I have a sqlite3 database with three tables: CREATE TABLE document ( id Int PRIMARY KEY NOT NULL, root_id Int, name Varchar(100), active Tinyint ); CREATE INDEX IDX_documentId ON document ...
2
votes
1answer
52 views

Questions about multi-table query performance

There is two way to do multi-table query: Qurey 1: select t1.a, t2.b from t1, t2 where t1.a = t2.a Query 2: for each row: select t1.a from t1 do another query: select t2.b from t2 where t2.a ...
0
votes
1answer
47 views

How to optimize this nested SQL query

Here is the database schema: [redacted] I'll describe what I'm doing with the query below: Innermost query: Select all the saleIds satisfying the WHERE conditions Middle query: Select all the ...
0
votes
1answer
62 views

optimize select with SUM … CASE

is there any way to optimize this query: select orders_id, orders_products_id, sum(CASE products_options_id WHEN 1 THEN products_options_values_id ELSE 0 END) as color, sum(CASE products_options_id ...
1
vote
3answers
52 views

MySQL query optimization - index

I have these tables: CREATE TABLE `cstat` ( `id_cstat` bigint(20) NOT NULL, `lang_code` varchar(3) NOT NULL, `description` varchar(255) NOT NULL, `description_tr` varchar(255) NOT NULL, ...
0
votes
2answers
69 views

MySQL query optimization and/or tweaks

I have the following query which both tables are huge. The query were very slow and I need your idea to optimize this query or do you have any other solution? SELECT c.EstablishmentID, (SELECT ...
2
votes
1answer
89 views

Temporary table vs short-circuit operation for SQL query

Following is my query which I want to optimize, here the bottleneck for the optimization is CONDITION_B. select @COMPUTE_X = count(distinct TABLEA.COLUMN_T5) from #TMP_TABLEA TABLEA inner join ...
0
votes
1answer
215 views

Execution Plan Optimization when where clause is removed then added back

I have a stored procedure that uses a table valued function which executes in 9 seconds. If I alter the table valued function and remove the where clause, the stored procedure executes in 3 seconds. ...
4
votes
1answer
161 views

optimize sql with subquery in from

I would like to optimize an sql statement, below is the original one. SELECT DISTINCT p.productID, p.filename, p.model, p.code, p.manufacturerID, f2.manufacturerName, ...
1
vote
2answers
60 views

SubSelect or Joins? Is there a better way to write this mysql query?

I know there is always a better way to do something, but I'm not sure how? What is the best way to optimize this query? Should I use Joins, a separate query, etc.. I know it's not a complex query.. ...
1
vote
1answer
423 views

MySQL: How to find leaves in specific node [duplicate]

Possible Duplicate: Is it possible to query a tree structure table in MySQL in a single query, to any depth? I know this kind questions has been posted here many times, for exmaple: Java ...
3
votes
3answers
107 views

Optimize a SQL query for tag matching

Example dataset: id | tag ---|------ 1 | car 1 | bike 2 | boat 2 | bike 3 | plane 3 | car id and tag are both indexed. I am trying to get the id who matches the tags [car, bike] (the number ...
1
vote
1answer
84 views

SQL query performance explanation

I have this query(of course with couple joins across tables and some views which I will call x for simplicity). Case 1 : select * from x -> returns in 10 sec, still acceptable, fairly heavy on ...
3
votes
2answers
212 views

How to make PostgresQL optimizer to build execution plan AFTER binding parameters?

I'm developing Pg/PLSQL function for PostgresQL 9.1. When I use variables in a SQL query, optimizer build a bad execution plan. But if I replace a variable by its value the plan is ok. For instance: ...
2
votes
1answer
76 views

Can I reuse the result of a subquery to optimize the overall quey?

I am using below query to fetch the top two records for profile_run_key. I am using three almost similar queries to get this done. This means I am traversing the table thrice for the "where" clause. ...
2
votes
4answers
194 views

How to get the last record in MySql with 2.5m rows

I want to get the last record in my MySql table, but the table has 2.5 million rows. How to get the last row efficiently? I'm using order and limit but the query runs ~15sec. I have to decrease this ...
0
votes
1answer
42 views

Retrieve multiple ResultSets without using StoredProcedures

Is there a way in Java 1.5 to retrieve multiple ResultSet objects from a DB2 database with a single SQL call without resorting to StoredProcedures / CallableStatements?
2
votes
3answers
57 views

Optimising COUNT(*) out of GROUP_BY queries

Below is a working SQL query that returns a list of unviewed message counts grouped by a user's multiple accounts. However, we don't actually need the counts, just a bit to indicate that unviewed ...
1
vote
1answer
55 views

Are SQL engines optimized that far ? (see example)

Let's say I query the DB as follows : SELECT T3.ID T1.factor1 * T2.factor2 * T3.VAL, T1.factor1 * T2.factor2 * T3.VAL, T1.factor1 * T2.factor2 * T3.VAL, T1.factor1 * T2.factor2 * ...
1
vote
1answer
60 views

Query Optimization

I have a query in Microsoft Access, that needs c.a 6 seconds to return 1000 records. SELECT DISTINCTROW tb_bauteile.* FROM tb_bauteile LEFT JOIN FehlerCodes_akt_Liste ON ...
0
votes
2answers
401 views

Can I copy & paste a SQL result that is over 1 million rows long into Excel?

I have been running a mammoth SQL query that is as so: select SessionID, PID, RespondentID from BIG_Sessions (nolock) where RespondentID in ( '1407718', '1498288', /* ETC ETC */ ) I heard that ...
1
vote
1answer
302 views

SQL optimization on the following 7 update queries. same table. Combine into one?

The following queries update the same table like 7 times.. I would appreciate your help on how I might optimize this by putting it into one query so it passes through the table only once instead of 7 ...
0
votes
1answer
97 views

Rails 3.1: Optimizing many_to_many through join table in single query?

User has many Tracks, through Favorite. Favorite has some extra per-user meta-data about the related track, and the whole thing is returned as a json blob using custom :as_public hashing method. ...
3
votes
4answers
110 views

what is the best way to optimize join query with multiple AND's?

I'm developing an online reservation system where people can reserve items based on availability for a particular hour of the day. For that i'm using two tables 1.Item 2.Reservation ...
1
vote
2answers
550 views

join two Oracle tables, date to not overlapping date ranges

I have two tables: trips: id_trip, id_object, trip_date, delta (8980026 rows) ranges: id_range, id_object, date_since, date_until (18490 rows) I need to optimize the following select statement ...
1
vote
1answer
88 views

How can I solve “Using filesort” for this SQL?

There is the table: CREATE TABLE `deal_keyword` ( `deal_id` int(11) unsigned NOT NULL default '0', `keyword_id` int(11) unsigned NOT NULL default '0', `area_id` int(11) unsigned NOT NULL ...
1
vote
1answer
175 views

SELECT DISTINCT Extremely slow

I have a query that is taking 48 seconds to execute as follows: SELECT count(DISTINCT tmd_logins.userID) as totalLoginsUniqueLast30Days FROM tmd_logins join tmd_users on tmd_logins.userID = ...
1
vote
2answers
255 views

Do SQL mapping tables speed up queries? How do you use them?

I'd like to know what the purpose of a mapping table is, and how it speeds up MySQL queries. I am working on speeding up a slow MySQL query, and I ran across this stackoverflow question. Comments ...
5
votes
2answers
812 views

SQL optimization Case statement

I believe I can optimize this sql statement by using a case statement for the Left Outer Joins. But I have been having hard time setting up the cases, one for summing up the code types AB,CD and ...
1
vote
2answers
56 views

Do regex search on int column efficiently?

Suppose there is an index on integer column id, how do I efficiently find those records whose id matches %789%? id LIKE '%789%' won't be able to use the index and will have performance issue. Is ...
0
votes
4answers
102 views

Can this SQL statement be Optimized?

This seems to be taking a very long time on large data sets. Will combining the first and last 3 queries into 1 make it faster? Does anyone have any input on what might make it faster? I appreciate ...
0
votes
1answer
105 views

can it be executed faster with big amount of data [MySQL]

is there any way how to optimize next query: EXPLAIN EXTENDED SELECT keyword_id, ck.keyword, COUNT( article_id ) AS cnt FROM career_article_keyword LEFT JOIN career_keywords ck USING ( keyword_id ) ...
0
votes
2answers
58 views

CTEs not working when theres IF condition in the query

I am trying to add functionality on my query to select which query will be executed on a certain condition. DECLARE @Test VARCHAR(50) SET @Test = 'A' ;WITH A AS ( Select 'A is Selected' as ...
0
votes
1answer
112 views

MySQL: any way to turn these N queries into fewer queries?

I have a list user_id of N integers, e.g. [1001, 1023, 13452, 1679834, ...] and a table: CREATE TABLE content ( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, user_id INT, content VARCHAR(100), ...
2
votes
2answers
176 views

Sql query optimization for calculating ratio

I have 2 tables (it is only part of table columns that are needed for this query): Items: Id int, OwnerId int ItemsRelations: RelationId int, ItemId Int (FK Items(Id)) For each OwnerId i need to ...
1
vote
4answers
174 views

Efficient search in many-to-many related tables

I have two tables related many-to-many via third connecting table: products and categories. Each product can be in a several categories. It's a typical many-to-many realationship: products ...
5
votes
2answers
221 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 ...
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 ...
1
vote
1answer
43 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
946 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 2