0
votes
5answers
165 views
Tips for speeding up this code
Hiya,
Can anyone suggest tips or alterations to make this code cleaner and faster? This was the only way I could think of doing it on a Friday evening, but I'm sure there must be …
2
votes
6answers
38 views
Optimize SQL query for canceled orders
Here is a subset of my tables:
orders:
- order_id
- customer_id
order_products:
- order_id
- order_product_id (unique key)
- canceled
I want to select all orders (order_id …
0
votes
1answer
24 views
How to Detect Select n+1 problems in Linq to SQL?
What is the best way to detect Select n+1 problems if i am using linq to SQL, right now we are working on a project and it seem to be pretty slow to display some lists.
What is th …
6
votes
17answers
312 views
SQL: Inner joining two massive tables
Good afternoon,
I have two massive tables with about 100 million records each and I'm afraid I needed to perform an Inner Join between the two. Now, both tables are very simple; h …
2
votes
3answers
59 views
Count from a table, but stop counting at a certain number
Is there a way in MySQL to COUNT(*) from a table where if the number is greater than x, it will stop counting there? Basically, I only want to know if the number of records returne …
0
votes
3answers
63 views
SQL Query For Total Points Within Radius of a Location
I have a database table of all zipcodes in the US that includes city,state,latitude & longitude for each zipcode. I also have a database table of points that each have a latitu …
0
votes
2answers
23 views
How to parse a mysql slow query log into something useful?
I have an extensive slow query log which was running for a few weeks. I would like to parse it, which would put the highest occurring queries at the top (with number of executions …
0
votes
5answers
123 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 …
1
vote
5answers
103 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 …
0
votes
2answers
39 views
Optimize mysql query
Hi All,
I want to optimize this query as it is taking long to execute almost a second
Here's the query:
IF Exists(
Select CustFirstName From Customers
Where (CustFirstName = …
1
vote
3answers
54 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
120 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
45 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 …
3
votes
3answers
118 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
69 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 …
