1
vote
5answers
82 views
Optimizing MySQL Query
We have a query that is currently killing our database and I know there has to be a way to optimize it. We have 3 tables:
items - table of items where each items has an associate …
1
vote
3answers
38 views
Downsides to “WITH SCHEMABINDING” in SQL Server?
I have a database with hundreds of awkwardly named tables in it (CG001T, GH066L, etc), and I have views on every one with its "friendly" name (the view "CUSTOMERS" is "SELECT * FRO …
1
vote
3answers
104 views
Speeding up SQL query when sorting on foreign keys
This is more of a generic SQL problem but I'm using Firebird 2.5 if anyone knows of a Firebird/Interbase specific optimization. First, the following is a simplified example schema …
0
votes
2answers
38 views
Optimising SQL Query With Multiple Joins
Hello,
I have the following three tables:
Venues, Events, Instance.
Events have a Venue (Venues have many events), and Events have many Instances.
For example, the Event "Termi …
1
vote
2answers
48 views
Fast check of existence of an entry in a SQL database
Nitpicker Question:
I like to have a function returning a boolean to check if a table has an entry or not. And i need to call this a lot, so some optimizing is needed.
Iues mysql …
3
votes
3answers
106 views
Prohibit MySQL from using full table scan on a query
Is there any way I can prohibit MySQL from performing a full table scan when the result was not found using indexes?
For example this query:
SELECT *
FROM a
WHERE (X BETWEEN a.B …
2
votes
3answers
61 views
How to eliminate duplicate calculation in SQL ?
I have a SQL that can be simplified to:
SELECT *
FROM table
WHERE LOCATE( column, :keyword ) > 0
ORDER BY LOCATE( column, :keyword )
You can see there is a duplicate of …
0
votes
2answers
62 views
Fastest/shortest way to build unique tree in Ruby?
What is the fastest/shortest/one-liner (not possible :p) way to build a unique tree of elements from a tree where many of the elements are duplicated/missing in some nodes, given t …
0
votes
1answer
56 views
Why don’t the mainstream DBMSs have graph functionality?
Relational databases are frequently used to store graphs in all their many flavors (trees, directed graphs, undirected graphs, ...).
Why then do none of the major DBMSs (Microsoft …
0
votes
2answers
72 views
How to optimize this query?
Query:
select id,
title
from posts
where id in (23,24,60,19,21,32,43,49,9,11,17,34,37,39,46,5
2,55)
Explain plan:
mysql> explain select id,title from posts where …
2
votes
5answers
331 views
T-SQL Where Clause Case Statement Optimization (optional parameters to StoredProc)
I've been battling this one for a while now. I have a stored proc that takes in 3 parameters that are used to filter. If a specific value is passed in, I want to filter on that. If …
0
votes
5answers
84 views
Is there a more efficient way than doing several JOINS (MySQL)?
I have three tables:
USER: user_id (pk); username
FIELD: field_id (pk); name
METADATA: metadata_id (pk); field_id (indx); user_id (indx); value
The reasoning for this is that t …
0
votes
4answers
56 views
Two left joins and one query to MySQL performance problem
Hello,
I'm designing a project for quizzes and quizz results. So I have two tables: quizz_result and quizz. quizz has primary key on ID and quizz_result has foreign key QUIZZ_ID t …
0
votes
4answers
63 views
PostgreSQL LIKE query performance variations
I have been seeing quite a large variation in response times regarding LIKE queries to a particular table in my database. Sometimes I will get results within 200-400 ms (very acce …
0
votes
1answer
25 views
Filter out rows by hardcoded list in MySQL performance
Hello,
I have a hardcoded list of values like: 1,5,7,8 and so on.
And I must filter out rows from table that have ID in list above, so I do something like this:
Select
*
from …
