1
vote
4answers
40 views
MySQL indexing strategy
I am trying to use the following query on a table with ~200k records in it. There are all sorts of other fields that can be filtered by, but this is a base example.
SELECT b.isbn FROM books b
WHERE …
0
votes
3answers
63 views
How to “default” a column in a SELECT query
Say I have a database table T with 4 fields, A, B, C, and D. A, B, and C are the primary key. For any combination of [A, B], there is always a row where C == spaces. There may or may not be other …
2
votes
7answers
149 views
One ID for every database column, how to do?
I working on a food database, every food has a list of properties (fats, energy, vitamins, etc.)
These props are composed by 50 different columns of proteins, fat, carbohydrates, vitamins, elements, …
0
votes
1answer
13 views
SQL SSRS Object has been disconnected or does not exist at the server
I have a couple stored procedures that run for about 2-3 minutes a piece (lots of data). When I run the stored procedures inside SQL Server Management Studio, the queries run fine and return the …
1
vote
5answers
104 views
How do I Create a Comma-Separated List using a SQL Query?
i have 3 tables called:
Applications (id, name)
Resources (id, name)
ApplicationsResources (id, app_id, resource_id)
i want to show on a gui a table of all resource names. in one cell in each …
1
vote
4answers
90 views
SQL Server Stored Procedure - ‘IF statement’ vs ‘Where criteria’
The question from quite a long time boiling in my head, that out of the following two stored procedures which one would perform better.
Proc 1
CREATE PROCEDURE GetEmployeeDetails @EmployeeId …
0
votes
2answers
36 views
designing mySql index and primary keying for efficiency
I have a mid-size collection of records --about 20 million -- that I need to load into mySQL for use in data analysis. These happen to be records of people visiting places. They are uniquely …
1
vote
1answer
30 views
Sub-query Optimization Talk with an example case
Hello guys,
I need advises and want to share my experience about Query Optimization. This week, I found myself stuck in an interesting dilemma.
I'm a novice person in mySql (2 years theory, less than …
0
votes
5answers
61 views
How to improve search speeds in this situation?
I have a search implemented on my site, it runs the following queries:
SELECT COUNT(mov_id) AS total_things
FROM content
WHERE con_status = 1 AND con_incomplete = 0 AND con_type = 1
…
2
votes
2answers
116 views
Join won’t do it, and sub query sucks, then what?
Hello all,
first of all, sorry for the non descriptive title, I'm just too rushed so I couldn't come up with a better one.
Second:
I have a portion of my database the looks like the following …
0
votes
5answers
186 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 a more efficient …
2
votes
6answers
47 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) for a given …
0
votes
2answers
38 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 the best method to …
2
votes
3answers
68 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 returned from a query is …
0
votes
3answers
99 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 latitude & longitude …
