Tagged Questions

0
votes
1answer
4 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
74 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
61 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
33 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
26 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
59 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
113 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
2answers
37 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 …
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
44 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 …
6
votes
17answers
342 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; here's the …
2
votes
3answers
64 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
86 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 …
0
votes
2answers
27 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 and average times of …
0
votes
4answers
118 views

Optimize multiple joins with table functions

I would like to join several times with the same table function for different input variables in the same query. But this turns in my case out to be much slower than using table variables and …

1 2 3 4 5 10 next
15 30 50 per page