active questions tagged query-optimization - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:31:16Z http://stackoverflow.com/feeds/tag/query-optimization http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1944217/optimizing-a-strange-mysql-query 0 Optimizing a strange MySQL Query Wayne M 2009-12-22T04:46:05Z 2009-12-22T05:39:48Z <p>Hoping someone can help with this. I have a query that pulls data from a PHP application and turns it into a view for use in a Ruby on Rails application. The PHP app's table is an E-A-V style table, with the following business rules:</p> <p>Given fields: First Name, Last Name, Email Address, Phone Number and Mobile Phone Carrier:</p> <ul> <li>Each property has two custom fields defined: one being required, one being not required. Clients can use either one, and different clients use different ones based on their own rules (e.g. Client A may not care about First and Last Name, but client B might)</li> <li>The RoR app <strong>must</strong> treat each "pair" of properties as only a single property.</li> </ul> <p>Now, here is the query. The problem is it runs beautifully with around 11,000 records. However, the real database has over 40,000 and the query is extremely slow, taking roughly 125 seconds to run which is totally unacceptable from a business perspective. It's absolutely required that we pull this data, and we need to interface with the existing system.</p> <p>The UserID part is to fake out a Rails-esque foreign key which relates to a Rails table. I'm a SQL Server guy, not a MySQL guy, so maybe someone can point out how to improve this query? They (the business) demand that it be sped up but I'm not sure how to since the various group_concat and ifnull calls are required due to the fact that I need every field for every client and then have to combine the data.</p> <pre><code>select `ls`.`subscriberid` AS `id`,left(`l`.`name`,(locate(_utf8'_',`l`.`name`) - 1)) AS `user_id`, ifnull(min((case when (`s`.`fieldid` in (2,35)) then `s`.`data` else NULL end)),_utf8'') AS `first_name`, ifnull(min((case when (`s`.`fieldid` in (3,36)) then `s`.`data` else NULL end)),_utf8'') AS `last_name`, ifnull(`ls`.`emailaddress`,_utf8'') AS `email_address`, ifnull(group_concat((case when (`s`.`fieldid` = 81) then `s`.`data` when (`s`.`fieldid` = 154) then `s`.`data` else NULL end) separator ''),_utf8'') AS `mobile_phone`, ifnull(group_concat((case when (`s`.`fieldid` = 100) then `s`.`data` else NULL end) separator ','),_utf8'') AS `sms_only`, ifnull(group_concat((case when (`s`.`fieldid` = 34) then `s`.`data` else NULL end) separator ','),_utf8'') AS `mobile_carrier` from ((`list_subscribers` `ls` join `lists` `l` on((`ls`.`listid` = `l`.`listid`))) left join `subscribers_data` `s` on((`ls`.`subscriberid` = `s`.`subscriberid`))) where (left(`l`.`name`,(locate(_utf8'_',`l`.`name`) - 1)) regexp _utf8'[[:digit:]]+') group by `ls`.`subscriberid`,`l`.`name`,`ls`.`emailaddress` </code></pre> http://stackoverflow.com/questions/1941506/stored-procedure-query-optimization 1 Stored Procedure Query Optimization Newbie 2009-12-21T17:36:42Z 2009-12-21T18:42:09Z <p>Hi all,</p> <p>I have the following query and it's not working exactly as i want it to and it is really slow so i figured i'd ask for some help.</p> <pre><code>CREATE PROCEDURE [dbo].[SummaryReport] @event varchar(7) = null, @pet_num varchar(12) = null AS BEGIN WITH pet_counts AS (SELECT event, pet_num, pageid, linenum, tot_sig_page, IDNUM, val_date, obj_type -- Objections ,case when sum(case when INV_SIG = '1' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when INV_SIG = '1' then 1 else 0 end)) + ' Invalid Sig' else '' end as InvalidSignature ,case when sum(case when INV_ADR = '1' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when INV_ADR = '1' then 1 else 0 end)) + ' Invalid Addr' else '' end as InvalidAddress ,case when sum(case when INV_DIST = '1' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when INV_DIST = '1' then 1 else 0 end)) + ' Invalid Dist' else '' end as InvalidDistrict ,case when sum(case when inc_adr = '1' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when inc_adr = '1' then 1 else 0 end)) + ' Inc Add' else '' end as IncAdd ,case when sum(case when dup_sig = '1' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when dup_sig = '1' then 1 else 0 end)) + ' Dup Sig' else '' end as DupSig ,case when sum(case when Inv_Circulator = '1' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when Inv_Circulator = '1' then 1 else 0 end)) + ' No CRC Date' else '' end as NoCRCDate ,case when sum(case when isnull(REASON,'') &lt;&gt; '' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when isnull(REASON,'') &lt;&gt; '' then 1 else 0 end)) + ' Other' else '' end as OtherReason ,sum(case when INV_SIG = '1' then 1 else 0 end) + sum(case when INV_ADR = '1' then 1 else 0 end) + sum(case when INV_DIST = '1' then 1 else 0 end) + sum(case when inc_adr = '1' then 1 else 0 end) + sum(case when dup_sig = '1' then 1 else 0 end) + sum(case when Inv_Circulator = '1' then 1 else 0 end) + sum(case when isnull(REASON,'') &lt;&gt; '' then 1 else 0 end) as TotalObjections -- Sustained ,case when sum(case when INV_SIG_ST = 'S' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when INV_SIG_ST = 'S' then 1 else 0 end)) + ' Sustained (Invalid Sig)' else '' end as SustainedInvalidSignature ,case when sum(case when INV_ADR_ST = 'S' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when INV_ADR_st = 'S' then 1 else 0 end)) + ' Sustained (Invalid Addr)' else '' end as SustainedInvalidAddress ,case when sum(case when INV_DIST_ST = 'S' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when INV_DIST_st = 'S' then 1 else 0 end)) + ' Sustained (Invalid Dist)' else '' end as SustainedInvalidDistrict ,case when sum(case when inc_adr_ST = 'S' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when inc_adr_st = 'S' then 1 else 0 end)) + ' Sustained (Inc Add)' else '' end as SustainedIncAdd ,case when sum(case when dup_sig_ST = 'S' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when dup_sig_st = 'S' then 1 else 0 end)) + ' Sustained (Dup Sig)' else '' end as SustainedDupSig ,case when sum(case when Inv_Circulator_ST = 'S' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when Inv_Circulator_ST = 'S' then 1 else 0 end)) + ' Sustained (No CRC Date)' else '' end as SustainedNoCRCDate ,case when sum(case when oth_reas_ST = 'S' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when oth_reas_st = 'S' then 1 else 0 end)) + ' Sustained (Other)' else '' end as SustainedOtherReason ,sum(case when INV_SIG_ST = 'S' then 1 else 0 end) + sum(case when INV_ADR_ST = 'S' then 1 else 0 end) + sum(case when INV_DIST_ST = 'S' then 1 else 0 end) + sum(case when inc_adr_ST = 'S' then 1 else 0 end) + sum(case when dup_sig_ST = 'S' then 1 else 0 end) + sum(case when Inv_Circulator_ST = 'S' then 1 else 0 end) + sum(case when oth_reas_ST = 'S' then 1 else 0 end) as TotalSustained -- Overruled ,case when sum(case when INV_SIG_ST = 'O' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when INV_SIG_ST = 'O' then 1 else 0 end)) + ' Overruled (Invalid Sig)' else '' end as OverruledInvalidSignature ,case when sum(case when INV_ADR_ST = 'O' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when INV_ADR_st = 'O' then 1 else 0 end)) + ' Overruled (Invalid Addr)' else '' end as OverruledInvalidAddress ,case when sum(case when INV_DIST_ST = 'O' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when INV_DIST_st = 'O' then 1 else 0 end)) + ' Overruled (Invalid Dist)' else '' end as OverruledInvalidDistrict ,case when sum(case when inc_adr_ST = 'O' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when inc_adr_st = 'O' then 1 else 0 end)) + ' Overruled (Inc Add)' else '' end as OverruledIncAdd ,case when sum(case when dup_sig_ST = 'O' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when dup_sig_st = 'O' then 1 else 0 end)) + ' Overruled (Dup Sig)' else '' end as OverruledDupSig ,case when sum(case when Inv_Circulator_ST = 'O' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when Inv_Circulator_ST = 'O' then 1 else 0 end)) + ' Overruled (No CRC Date)' else '' end as OverruledNoCRCDate ,case when sum(case when oth_reas_ST = 'O' then 1 else 0 end) &gt; 0 then convert(varchar(5), sum(case when oth_reas_st = 'O' then 1 else 0 end)) + ' Overruled (Other)' else '' end as OverruledOtherReason ,sum(case when INV_SIG_ST = 'O' then 1 else 0 end) + sum(case when INV_ADR_ST = 'O' then 1 else 0 end) + sum(case when INV_DIST_ST = 'O' then 1 else 0 end) + sum(case when inc_adr_ST = 'O' then 1 else 0 end) + sum(case when dup_sig_ST = 'O' then 1 else 0 end) + sum(case when Inv_Circulator_ST = 'O' then 1 else 0 end) + sum(case when oth_reas_ST = 'O' then 1 else 0 end) as TotalOverruled -- Cand Exceptions ,sum(case when INV_SIG_EX = 'C' then 1 else 0 end) + sum(case when INV_ADR_EX = 'C' then 1 else 0 end) + sum(case when INV_DIST_EX = 'C' then 1 else 0 end) + sum(case when inc_adr_EX = 'C' then 1 else 0 end) + sum(case when dup_sig_EX = 'C' then 1 else 0 end) + sum(case when Inv_Circulator_EX= 'C' then 1 else 0 end) + sum(case when oth_reas_EX = 'C' then 1 else 0 end) as TotalCandidateExceptions -- Objector Exceptions ,sum(case when INV_SIG_EX = 'O' then 1 else 0 end) + sum(case when INV_ADR_EX = 'O' then 1 else 0 end) + sum(case when INV_DIST_EX = 'O' then 1 else 0 end) + sum(case when inc_adr_EX = 'O' then 1 else 0 end) + sum(case when dup_sig_EX = 'O' then 1 else 0 end) + sum(case when Inv_Circulator_EX = 'O' then 1 else 0 end) + sum(case when oth_reas_EX = 'O' then 1 else 0 end) as TotalObjectorExceptions FROM petchl WHERE event=@event AND pet_num=@pet_num GROUP BY event, pet_num, pageid, linenum, tot_sig_page, IDNUM, val_date, obj_type), user_info as ( SELECT vp.IDNUM, v.full_name, ltrim((isnull(rtrim(ltrim(v.addr_num)),'')) + ' ' + isnull(rtrim(ltrim(v.addr_frac)),'') + ' ' + isnull(rtrim(ltrim(v.addr_dir)),'') + ' ' + isnull(rtrim(ltrim(v.addr_str)),'') + ' ' + isnull(rtrim(ltrim(v.addr_type)),'') + ' ' + isnull(rtrim(ltrim(v.addr_other)),'')) as address1, (isnull(v.cityname,'')+ ' ' + isnull(v.addr_zip,'')) as address2, v.regdate, v.birthdate, v.sex, v.prec, s.signature FROM petchl AS vp INNER JOIN v_JPPUsers AS v ON vp.IDNUM = v.IDNUM LEFT OUTER JOIN Signatures AS s ON v.IDNUM = s.IDNUM WHERE vp.event=@event AND vp.pet_num=@pet_num UNION ALL SELECT vp.IDNUM, v.full_name, ltrim((isnull(rtrim(ltrim(v.addr_num)),'')) + ' ' + isnull(rtrim(ltrim(v.addr_frac)),'') + ' ' + isnull(rtrim(ltrim(v.addr_dir)),'') + ' ' + isnull(rtrim(ltrim(v.addr_str)),'') + ' ' + isnull(rtrim(ltrim(v.addr_type)),'') + ' ' + isnull(rtrim(ltrim(v.addr_other)),'')) as address1, (isnull(v.cityname,'')+ ' ' + isnull(v.addr_zip,'')) as address2, null as regdate, v.birthdate, v.sex, v.prec, s.signature FROM petchl AS vp INNER JOIN v_Cityusers AS v ON vp.IDNUM = v.IDNUM LEFT OUTER JOIN v_CitySignatures AS s ON v.IDNUM = s.IDNUM WHERE vp.event=@event AND vp.pet_num=@pet_num ) SELECT p.event, p.PET_NUM, p.PAGEID, p.LINENUM, convert(varchar(10), vp.pet_date, 101) as pet_date, p.InvalidSignature, p.InvalidAddress, p.InvalidDistrict, p.IncAdd, p.DupSig, p.NoCRCDate, p.OtherReason, p.TotalObjections, p.SustainedInvalidSignature, p.SustainedInvalidAddress, p.SustainedInvalidDistrict, p.SustainedIncAdd, p.SustainedDupSig, p.SustainedNoCRCDate, p.SustainedOtherReason, p.TotalSustained, p.OverruledInvalidSignature, p.OverruledInvalidAddress, p.OverruledInvalidDistrict, p.OverruledIncAdd, p.OverruledDupSig, p.OverruledNoCRCDate, p.OverruledOtherReason, p.TotalOverruled, p.TotalCandidateExceptions, p.TotalObjectorExceptions, p.TOT_SIG_PAGE, v.full_name, v.address1, v.address2, p.IDNUM, v.regdate, v.birthdate, convert(varbinary(max), v.signature) as signature FROM pet_counts p LEFT OUTER JOIN user_info v ON p.IDNUM = v.IDNUM LEFT OUTER JOIN vrpet vp ON p.event = vp.event AND p.PET_NUM = vp.PET_NUM WHERE p.event = @event and p.pet_num = @pet_num ORDER BY pageid, linenum END </code></pre> <p>The query runs if i don't do a distinct on the final select, but i somehow need to a distinct because i'm having duplicate rows being returned. I'm guessing it's because of the image field. Is there any better / more efficient way to do a query of this nature and have the correct number of records returned? </p> <p>Thanks</p> http://stackoverflow.com/questions/1933394/what-is-the-best-db-strategy-for-column-indexing 0 what is the best db strategy for column indexing? oo 2009-12-19T16:43:52Z 2009-12-21T13:58:44Z <p>Two examples are: </p> <ol> <li>Columns that will show up in a queries where clause (where Name = "xtz")</li> <li>Columns that you are going to order (sort) on in queries</li> </ol> <p>Is this correct and are there other important use cases?</p> <p>Can SQL Server recommend fields to index based on usage patterns ?</p> http://stackoverflow.com/questions/1933002/measuring-performance-for-single-or-multiple-queries-when-you-have-large-number-o 2 Measuring performance for Single or multiple queries when you have large number of bridge tables oo 2009-12-19T14:10:59Z 2009-12-20T15:31:04Z <p>i asked <a href="http://stackoverflow.com/questions/1932019/database-query-optimization-question-one-big-join-or-multiple-queries">this question</a> around a single join or multiple (select n + 1) queries</p> <p>i wanted to find out if this was the same if you had many to many relationship and a lot of bridge tables</p> <p>for example, here are my tables:</p> <p>Table: People (id, first, last, age, phone, etc . .)<br> Table: Roles (id, name)<br> Table: PeopleRoles (id, personID, roleID)<br> Table: Skills (id, name)<br> Table: PeopleSkills (id, personID, skillID) </p> <p>so if i did a join, i would get multiple rows for each person (assuming a person has many roles or multiple skills).</p> <p>assuming there are many more tables like this with many relationships, which is faster:</p> <h2>Option 1:</h2> <ol> <li>Select * from applications</li> <li>then loop through each application and run a Select * from Roles where applicationID = id inner join</li> </ol> <h2>Option 2:</h2> <p>or trying to create one massive query that returns a large result set and i then need to normalize it when i translate this into data structures (as i will get the same application in multiple rows of course.</p> http://stackoverflow.com/questions/1933298/how-to-combine-2-or-more-bridge-tables-in-a-single-query 0 how to combine 2 or more bridge tables in a single query oo 2009-12-19T16:11:31Z 2009-12-19T19:31:03Z <p>i have the following tables:</p> <p>Table: People (id, first, last, age, phone, etc . .)<br> Table: Roles (id, name)<br> Table: Skills (id, name)<br> Table: People_Roles (id, personID^, roleID^)<br> Table: People_Skills (id, personID^, skillID^)</p> <pre><code>^ = foreign key </code></pre> <p>I basically want a query that gives me the full result set of all people and their roles and there skills.</p> <p>Person.First, Person.Last, Roles.Name, Skills.Name </p> http://stackoverflow.com/questions/1932019/database-query-optimization-question-one-big-join-or-multiple-queries 2 database query optimization question - one big join or multiple queries oo 2009-12-19T05:05:53Z 2009-12-19T06:07:56Z <p>i have a table called orders. one column on order is customer_id<br> i have a table called customers with 10 fields</p> <p>Given the two options if i want to build up an array of order objects and embedded in an order object is a customer object i have two choices.</p> <h2>Option 1:</h2> <p>a. first query orders table. b. loop through records and query the persons table to get the records for the person</p> <p>This would be something like:</p> <pre><code> Select * from Applications a, Customers c Innerjoin c.id = a.customerID </code></pre> <h2>Option 2:</h2> <p>a. do a join on all fields </p> <p>its an obvious #2 because you are only doing one query versus 1 + [numberOforders] queries (could be hundreds or more)</p> <p>this would be something like:</p> <pre><code> Select * from APplications Select * from Customer where id = 1 Select * from Customer where id = 2 Select * from Customer where id = 3 Select * from Customer where id = etc . . . </code></pre> <p>my main question is, what if i had 10 other tables that were off of the orders table (similar to customer) where you had the id in the order table. should you do a single query that joins these 10 tables or at some point is it inefficient do to this:</p> <p>any suggestions would help.. is there any optimization to ensure fast performance</p> http://stackoverflow.com/questions/1913389/will-sql-2008-query-opmtimizer-optimize-this-query 0 Will SQL 2008 query opmtimizer optimize this query? abatishchev 2009-12-16T09:24:30Z 2009-12-16T09:43:41Z <p>Have I to break this query</p> <pre><code>SELECT ISNULL(SUM(AF.[amount]), 0) AS [firm], ISNULL(SUM(ACA.[amount]), 0) AS [cash], ISNULL(SUM(AC.[amount]), 0) AS [client], ISNULL(SUM(AFR.[amount]), 0) AS [fr], ISNULL((SUM(AF.[amount]) + SUM(ACA.[amount]) - (SUM(AC.[amount]) + SUM(AFR.[amount])), 0) AS [total] FROM ... </code></pre> <p>into two:</p> <pre><code>DECLARE @firm DECIMAL(14,2), @client DECIMAL(14,2), @fr DECIMAL(14,2), @cash DECIMAL(14,2) SELECT @firm = SUM(AF.[amount]), @client = SUM(AC.[amount]), @fr = SUM(AFR.[amount]), @cash = SUM(ACA.[amount]) FROM ... SELECT ISNULL(@firm, 0) AS [firm], ISNULL(@cash, 0) AS [cash], ISNULL(@client, 0) AS [client], ISNULL(@fr, 0) AS [fr], ISNULL((@firm + @cash) - (@client + @fr), 0) AS [total] </code></pre> <p>?</p> http://stackoverflow.com/questions/1605619/mysql-usage-of-indices-in-union-subselects 1 MySQL: Usage of indices in UNION subselects jrudolph 2009-10-22T07:51:30Z 2009-12-16T09:33:42Z <p>In <code>MySQL 5.0.75-0ubuntu10.2</code> I've got a fixed table layout like that:</p> <p>Table <code>parent</code> with an id Table <code>parent2</code> with an id Table <code>children1</code> with a parentId</p> <pre><code>CREATE TABLE `Parent` ( `id` int(11) NOT NULL auto_increment, `name` varchar(200) default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CREATE TABLE `Parent2` ( `id` int(11) NOT NULL auto_increment, `name` varchar(200) default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CREATE TABLE `Children1` ( `id` int(11) NOT NULL auto_increment, `parentId` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `parent` (`parentId`) ) ENGINE=InnoDB </code></pre> <p>A children has a parent in one of the tables <code>Parent</code> or <code>Parent2</code>. When I need to get a children I use a query like that:</p> <pre><code>select * from Children1 c inner join ( select id as parentId from Parent union select id as parentId from Parent2 ) p on p.parentId = c.parentId </code></pre> <p><em>Explaining</em> this query yields:</p> <pre><code>+----+--------------+------------+-------+---------------+---------+---------+------+------+-----------------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+--------------+------------+-------+---------------+---------+---------+------+------+-----------------------------------------------------+ | 1 | PRIMARY | NULL | NULL | NULL | NULL | NULL | NULL | NULL | Impossible WHERE noticed after reading const tables | | 2 | DERIVED | Parent | index | NULL | PRIMARY | 4 | NULL | 1 | Using index | | 3 | UNION | Parent2 | index | NULL | PRIMARY | 4 | NULL | 1 | Using index | | NULL | UNION RESULT | &lt;union2,3&gt; | ALL | NULL | NULL | NULL | NULL | NULL | | +----+--------------+------------+-------+---------------+---------+---------+------+------+-----------------------------------------------------+ 4 rows in set (0.00 sec) </code></pre> <p>which is reasonable given the layout.</p> <p>Now the problem: The previous query is somewhat useless, since it returns no columns from the parent elements. In the moment I add more columns to the inner query no index will be used anymore:</p> <pre><code>mysql&gt; explain select * from Children1 c inner join ( select id as parentId,name from Parent union select id as parentId,name from Parent2 ) p on p.parentId = c.parentId; +----+--------------+------------+------+---------------+------+---------+------+------+-----------------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+--------------+------------+------+---------------+------+---------+------+------+-----------------------------------------------------+ | 1 | PRIMARY | NULL | NULL | NULL | NULL | NULL | NULL | NULL | Impossible WHERE noticed after reading const tables | | 2 | DERIVED | Parent | ALL | NULL | NULL | NULL | NULL | 1 | | | 3 | UNION | Parent2 | ALL | NULL | NULL | NULL | NULL | 1 | | | NULL | UNION RESULT | &lt;union2,3&gt; | ALL | NULL | NULL | NULL | NULL | NULL | | +----+--------------+------------+------+---------------+------+---------+------+------+-----------------------------------------------------+ 4 rows in set (0.00 sec) </code></pre> <p>Can anyone explain why the (PRIMARY) indices are not used any more? Is there a workaround for this problem if possible without having to change the DB layout?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1333803/can-this-query-improved 1 can this query improved?? Ramesh Vel 2009-08-26T10:41:11Z 2009-12-16T09:24:47Z <p>Hi,</p> <p>pls have a look at the below sql code.</p> <pre><code>DECLARE @RET TABLE(OID BIGINT NOT NULL,rowid bigint identity); DECLARE @ResultTbl TABLE(OID BIGINT,sOID BIGINT,partkey bigint); DECLARE @PATOID as VARCHAR(4000) SET @PATIENTOID= '95,96,192,253,110,201,201,83,87,88,208,208,208,208' INSERT INTO @RET SELECT OID FROM dbo.FGETBIGINTLIST(@PATOID ) DECLARE @NoOfRows bigint DECLARE @InOID bigint select @NoOfRows = max(rowid) from @RET while (@NoOfRows &gt;=1) begin select @InOID = oid from @RET where rowid=@NoOfRows insert into @ResultTbl select * from fresolve_11(@InOID) set @NoOfRows = @NoOfRows - 1 end SELECT * FROM @RET SELECT * FROM @ResultTbl </code></pre> <p>function <strong>FGETBIGINTLIST</strong> accepts the comma seperated value as parameter and returns the value in table format.. just like </p> <pre><code>OID 95 96 192 253 110 201 201 83 87 88 208 208 208 208 </code></pre> <p>and function <strong>fresolve_11</strong> accepts the bigint data returned by FGETBIGINTLIST and will return the output in this format</p> <pre><code>OID sOID PartKey -------------------- -------------------- ----------- 95 95 6 </code></pre> <p>my requirement is to pass each data returned by the FGETBIGINTLIST to function fresolve_11 and should return a result set like this</p> <pre><code>OID sOID partkey -------------------- -------------------- -------------------- 208 208 29 208 208 29 208 208 29 208 208 29 88 88 29 87 87 28 83 83 24 201 201 22 201 201 22 110 110 21 253 253 14 192 192 13 96 96 7 95 95 6 </code></pre> <p>my query works perfectly and returns the expected result. But am looking for better alternatives without using while loop and 2 table variables.</p> <p>Thanks in advance.</p> <p>Cheers</p> <p>Ramesh Vel</p> http://stackoverflow.com/questions/1711527/optimizing-an-sql-query-using-inner-join-and-order-by 0 optimizing an sql query using inner join and order by Sergio B 2009-11-10T21:57:59Z 2009-12-16T02:00:03Z <p>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?</p> <pre><code>EXPLAIN SELECT SQL_NO_CACHE `groups`.* FROM `groups` INNER JOIN `memberships` ON `groups`.id = `memberships`.group_id WHERE ((`memberships`.user_id = 1) AND (`memberships`.`status_code` = 1 AND `memberships`.`manager` = 0)) ORDER BY groups.created_at DESC LIMIT 5;` +----+-------------+-------------+--------+--------------------------+---------+---------+---------------------------------------------+------+----------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+-------------+--------+--------------------------+---------+---------+---------------------------------------------+------+----------------------------------------------+ | 1 | SIMPLE | memberships | ref | grp_usr,grp,usr,grp_mngr | usr | 5 | const | 5 | Using where; Using temporary; Using filesort | | 1 | SIMPLE | groups | eq_ref | PRIMARY | PRIMARY | 4 | sportspool_development.memberships.group_id | 1 | | +----+-------------+-------------+--------+--------------------------+---------+---------+---------------------------------------------+------+----------------------------------------------+ 2 rows in set (0.00 sec) +--------+------------+-----------------------------------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+ | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | +--------+------------+-----------------------------------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+ | groups | 0 | PRIMARY | 1 | id | A | 6 | NULL | NULL | | BTREE | | | groups | 1 | index_groups_on_name | 1 | name | A | 6 | NULL | NULL | YES | BTREE | | | groups | 1 | index_groups_on_privacy_setting | 1 | privacy_setting | A | 6 | NULL | NULL | YES | BTREE | | | groups | 1 | index_groups_on_created_at | 1 | created_at | A | 6 | NULL | NULL | YES | BTREE | | | groups | 1 | index_groups_on_id_and_created_at | 1 | id | A | 6 | NULL | NULL | | BTREE | | | groups | 1 | index_groups_on_id_and_created_at | 2 | created_at | A | 6 | NULL | NULL | YES | BTREE | | +--------+------------+-----------------------------------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+ +-------------+------------+----------------------------------------------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+ | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | +-------------+------------+----------------------------------------------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+ | memberships | 0 | PRIMARY | 1 | id | A | 2 | NULL | NULL | | BTREE | | | memberships | 0 | grp_usr | 1 | group_id | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 0 | grp_usr | 2 | user_id | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | grp | 1 | group_id | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | usr | 1 | user_id | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | grp_mngr | 1 | group_id | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | grp_mngr | 2 | manager | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | complex_index | 1 | group_id | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | complex_index | 2 | user_id | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | complex_index | 3 | status_code | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | complex_index | 4 | manager | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | index_memberships_on_user_id_and_status_code_and_manager | 1 | user_id | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | index_memberships_on_user_id_and_status_code_and_manager | 2 | status_code | A | 2 | NULL | NULL | YES | BTREE | | | memberships | 1 | index_memberships_on_user_id_and_status_code_and_manager | 3 | manager | A | 2 | NULL | NULL | YES | BTREE | | +-------------+------------+----------------------------------------------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+ </code></pre> http://stackoverflow.com/questions/1895828/question-about-ruby-on-rails-constants-belongsto-database-optimization-perfo 0 Question about Ruby on Rails, Constants, belongs_to & Database Optimization/Performance Paul Davis 2009-12-13T07:17:05Z 2009-12-13T15:38:19Z <p>I've developed a web based point of sale system for one of my clients in Ruby on Rails with MySQL backend. These guys are growing so fast that they are ringing close to 10,000 transactions per day corporate-wide. For this question, I will use the <strong>transactions</strong> table as an example. Currently, I store the <strong>transactions.status</strong> as a string (ie: 'pending', 'completed', 'incomplete') within a varchar(255) field that has an index. In the beginning, it was fine when I was trying to lookup records by different statuses as I didn't have to worry about so many records. Over time, using the query analyzer, I have noticed that performance has worsened and that varchar fields can really slowdown your query speed over thousands of lookups. I've been thinking about converting these varchar fields to integer based status fields utilizing <strong>STATUS CONSTANT</strong> within the <strong>Transaction</strong> model like so:</p> <pre><code>class Transaction &lt; ActiveRecord::Base STATUS = { :incomplete =&gt; 0, :pending =&gt; 1, :completed =&gt; 2 } def expensive_query_by_status(status) self.find(:all, :select =&gt; "id, cashier, total, status", :condition =&gt; { :status =&gt; STATUS[status.to_sym] }) end </code></pre> <p>Is this the best route for me to take? What do you guys suggest? I am already using proper indexes on various lookup fields and <strong>memcached</strong> for query caching wherever possible. They're currently setup on a distributed server environment of 3 servers where 1st is for application, 2nd for DB &amp; 3rd for caching (all in 1 datacenter &amp; on same VLAN).</p> http://stackoverflow.com/questions/1892328/how-might-i-improve-the-execution-time-of-my-join-heavy-query -5 How might I improve the execution time of my join-heavy query? Fero 2009-12-12T04:47:56Z 2009-12-12T07:06:22Z <p>I am joining multiple tables in a MySQL query, and the execution of this query is very slow. I badly need to improve the execution time!</p> <p>I did some optimization, but still it loads slowly. Any suggestions?</p> http://stackoverflow.com/questions/1817985/how-do-i-create-a-comma-separated-list-using-a-sql-query 1 How do I Create a Comma-Separated List using a SQL Query? oo 2009-11-30T05:31:35Z 2009-12-11T03:35:24Z <p>i have 3 tables called: </p> <ul> <li>Applications (id, name)</li> <li>Resources (id, name)</li> <li>ApplicationsResources (id, app_id, resource_id)</li> </ul> <p>i want to show on a gui a table of all resource names. in one cell in each row, i would like to list out all of the applications (comma separated) of that resource.</p> <p>So the question is what is the best way to do this in SQL as i need to get all resources but i also need to get all applications for each resource? </p> <p>Do i run a select * from resources first and then loop through each resource and do a seperate query per resource to get the list of applications for that resource?</p> <p>is there a way i can do this in one query?</p> http://stackoverflow.com/questions/1883982/which-will-be-faster-out-of-these-two-queries 1 Which will be faster out of these two queries? Yada 2009-12-10T20:59:36Z 2009-12-10T21:44:32Z <pre><code>SELECT * FROM table WHERE col IN (1,2,3) </code></pre> <p>or</p> <pre><code>SELECT * FROM table WHERE col = 1 OR col = 2 OR col = 3 </code></pre> http://stackoverflow.com/questions/1870997/is-it-a-good-practice-to-write-subqueries-in-mysql 3 Is it a good practice to write subqueries in MySQL? Legend 2009-12-09T01:02:32Z 2009-12-09T02:59:29Z <p>I am writing the following sub query for some project specific purpose:</p> <pre><code>SELECT count(*) from table1 WHERE userB='$p' AND userA IN (SELECT userB FROM table1 WHERE userA='$row[username]') </code></pre> <p>I was curious if this was the best practice when doing it in PHP or should I resort to the conventional way of first getting the subquery result and then counting the records?</p> http://stackoverflow.com/questions/1865762/is-there-a-performance-difference-between-select-from-tablename-and-select-colu 1 Is there a performance difference between select * from tablename and select column1, column2 from tablename? [closed] Steven 2009-12-08T09:24:12Z 2009-12-08T14:32:14Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/1771795/select-vs-specifying-column-names">Select * vs Specifying Column Names</a><br> <a href="http://stackoverflow.com/questions/65512/which-is-faster-best-select-or-select-column1-colum2-column3-etc">Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.</a> </p> </blockquote> <p>Is there a performance difference between <code>select * from tablename</code> and <code>select column1, column2 from tablename</code>?</p> <p>When it is <code>select * from</code>, the database pulls out all fields/columns which are more than 2 fields/columns. So does the first query cost more time/resources?</p> http://stackoverflow.com/questions/1860690/mysql-query-optimization 0 mysql query optimization magerio 2009-12-07T15:27:28Z 2009-12-07T21:25:12Z <p>I have this database:</p> <p>Tab1 ---1:n--->tab2 (parent->id) (max1:4) - the complicated part</p> <p>Tab1 ---1:n--->tab3 (parent->id) - simple join</p> <h2>tab1 </h2> <p>id<br> name<br> version<br> ..etc. </p> <h2>tab2</h2> <p>id<br> parent<br> type<br> price<br> ..etc. </p> <h2>tab3</h2> <p>id<br> parent<br> type<br> data </p> <p>I'd like to select complete set of information from these 3 joined tables, but I need to use many variable conditions, so I need to come up with the best solution as possible.</p> <p>I use this query:</p> <pre><code>SELECT tab1.id, CONCAT(tab1.name,' ',tab1.version) AS nv, ndvar.price, tab3.data, ndvar.v1 [more columns] FROM tab1 INNER JOIN ( SELECT parent, type, GROUP_CONCAT(type SEPARATOR '') + '' AS v1, MIN(price) AS price [more columns] FROM tab2 WHERE show = 1 [more condition] GROUP BY parent HAVING type IN (2,3) [1-3 parameters] ) AS ndvar ON tab1.id = ndvar.parent LEFT JOIN content ON tab1.id = tab3.parent AND tab3.type = 0 WHERE name LIKE '%xyz%' [more conditions] ORDER BY nv </code></pre> <p>I have tried to make it as simple to understand as I could.</p> <p>My questions: 1) How to optimize this query to have if as fast as possible 2) What columns use as indexes? For now it is only 'id' column.</p> <p>The 'type' column in tab2 contains values 0-3 and for each id there is only row with that type, so there coul by index, but i don't know if it would make any improvements to my query.</p> <p>Thanks in advance.</p> <h2>EDIT:</h2> <p>This is a query used during search in on-line catalog, there will be just few inserts or updates during month, but many searches each day. The tab1 will have around hundreds of records, tab2 around tab1*4 records, and tab3 around tab1*15 records. There are many search conditions involving mostly tab1 (1-15 parameters) and tab2 for 3 parameters. All the parameters are numbers (double) except the name and version, which are name - varchar(25) and version - varchar(20).</p> <p>The query is going to be executed on mysql 5.0.70, db engine MyISAM</p> <p>By all statistics I have, searches for tab2.price range and tab2.type is the most common and searches for other number ranges are more common than search by tab1.name or tab1.version.</p> <p>I will gladly fill in any other information anybody is going to ask.</p> <p>BTW: sorry for my poor grammar, english is not my home language :)</p> <h2>EDIT2:</h2> <p>I might by misinterpreting the whole "HAVING" concept. In the v1, I need to have stored the whole set of values from tab2 rows for each parent from tab1, but I need to filter them by the tab2.type .. how to do that?</p> <h2>EDIT3:</h2> <p>This type of aggregation returns exactly what I need, BUT - I know its terrible solution, somebody knows how to improve it? </p> <pre><code> GROUP BY parent HAVING v1 LIKE '%0% </code></pre> http://stackoverflow.com/questions/1054056/how-can-i-optimize-this-subqueried-and-joined-mysql-query 0 How can I optimize this subqueried and Joined MySQL Query? kevzettler 2009-06-28T02:11:51Z 2009-12-06T14:00:03Z <p>I'm pretty green on mysql and I need some tips on cleaning up a query. It is used in several variations through out a site. Its got some subquerys derived tables and fun going on. Heres the query:</p> <pre><code># Query_time: 2 Lock_time: 0 Rows_sent: 0 Rows_examined: 0 SELECT * FROM ( SELECT products . *, categories.category_name AS category, ( SELECT COUNT( * ) FROM distros WHERE distros.product_id = products.product_id) AS distro_count, (SELECT COUNT(*) FROM downloads WHERE downloads.product_id = products.product_id AND WEEK(downloads.date) = WEEK(curdate())) AS true_downloads, (SELECT COUNT(*) FROM views WHERE views.product_id = products.product_id AND WEEK(views.date) = WEEK(curdate())) AS true_views FROM products INNER JOIN categories ON products.category_id = categories.category_id ORDER BY created_date DESC, true_views DESC ) AS count_table WHERE count_table.distro_count &gt; 0 AND count_table.status = 'published' AND count_table.active = 1 LIMIT 0, 8 </code></pre> <p>Heres the explain:</p> <pre><code>+----+--------------------+------------+-------+---------------+-------------+---------+------------------------------------+------+----------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+--------------------+------------+-------+---------------+-------------+---------+------------------------------------+------+----------------------------------------------+ | 1 | PRIMARY | &lt;derived2&gt; | ALL | NULL | NULL | NULL | NULL | 232 | Using where | | 2 | DERIVED | categories | index | PRIMARY | idx_name | 47 | NULL | 13 | Using index; Using temporary; Using filesort | | 2 | DERIVED | products | ref | category_id | category_id | 4 | digizald_db.categories.category_id | 9 | | | 5 | DEPENDENT SUBQUERY | views | ref | product_id | product_id | 4 | digizald_db.products.product_id | 46 | Using where | | 4 | DEPENDENT SUBQUERY | downloads | ref | product_id | product_id | 4 | digizald_db.products.product_id | 14 | Using where | | 3 | DEPENDENT SUBQUERY | distros | ref | product_id | product_id | 4 | digizald_db.products.product_id | 1 | Using index | +----+--------------------+------------+-------+---------------+-------------+---------+------------------------------------+------+----------------------------------------------+ 6 rows in set (0.04 sec) </code></pre> <p>And the Tables:</p> <pre><code>mysql&gt; describe products; +---------------+--------------------------------------------------+------+-----+-------------------+----------------+ | Field | Type | Null | Key | Default | Extra | +---------------+--------------------------------------------------+------+-----+-------------------+----------------+ | product_id | int(10) unsigned | NO | PRI | NULL | auto_increment | | product_key | char(32) | NO | | NULL | | | title | varchar(150) | NO | | NULL | | | company | varchar(150) | NO | | NULL | | | user_id | int(10) unsigned | NO | MUL | NULL | | | description | text | NO | | NULL | | | video_code | text | NO | | NULL | | | category_id | int(10) unsigned | NO | MUL | NULL | | | price | decimal(10,2) | NO | | NULL | | | quantity | int(10) unsigned | NO | | NULL | | | downloads | int(10) unsigned | NO | | NULL | | | views | int(10) unsigned | NO | | NULL | | | status | enum('pending','published','rejected','removed') | NO | | NULL | | | active | tinyint(1) | NO | | NULL | | | deleted | tinyint(1) | NO | | NULL | | | created_date | datetime | NO | | NULL | | | modified_date | timestamp | NO | | CURRENT_TIMESTAMP | | | scrape_source | varchar(215) | YES | | NULL | | +---------------+--------------------------------------------------+------+-----+-------------------+----------------+ 18 rows in set (0.00 sec) mysql&gt; describe categories -&gt; ; +------------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------------+------------------+------+-----+---------+----------------+ | category_id | int(10) unsigned | NO | PRI | NULL | auto_increment | | category_name | varchar(45) | NO | MUL | NULL | | | parent_id | int(10) unsigned | YES | MUL | NULL | | | category_type_id | int(10) unsigned | NO | | NULL | | +------------------+------------------+------+-----+---------+----------------+ 4 rows in set (0.00 sec) mysql&gt; describe compatibilities -&gt; ; +------------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------------+------------------+------+-----+---------+----------------+ | compatibility_id | int(10) unsigned | NO | PRI | NULL | auto_increment | | name | varchar(45) | NO | | NULL | | | code_name | varchar(45) | NO | | NULL | | | description | varchar(128) | NO | | NULL | | | position | int(10) unsigned | NO | | NULL | | +------------------+------------------+------+-----+---------+----------------+ 5 rows in set (0.01 sec) mysql&gt; describe distros -&gt; ; +------------------+--------------------------------------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------------+--------------------------------------------------+------+-----+---------+----------------+ | id | int(10) unsigned | NO | PRI | NULL | auto_increment | | product_id | int(10) unsigned | NO | MUL | NULL | | | compatibility_id | int(10) unsigned | NO | MUL | NULL | | | user_id | int(10) unsigned | NO | | NULL | | | status | enum('pending','published','rejected','removed') | NO | | NULL | | | distro_type | enum('file','url') | NO | | NULL | | | version | varchar(150) | NO | | NULL | | | filename | varchar(50) | YES | | NULL | | | url | varchar(250) | YES | | NULL | | | virus | enum('READY','PASS','FAIL') | YES | | NULL | | | downloads | int(10) unsigned | NO | | 0 | | +------------------+--------------------------------------------------+------+-----+---------+----------------+ 11 rows in set (0.01 sec) mysql&gt; describe downloads; +------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+------------------+------+-----+---------+----------------+ | id | int(10) unsigned | NO | PRI | NULL | auto_increment | | product_id | int(10) unsigned | NO | MUL | NULL | | | distro_id | int(10) unsigned | NO | MUL | NULL | | | user_id | int(10) unsigned | NO | MUL | NULL | | | ip_address | varchar(15) | NO | | NULL | | | date | datetime | NO | | NULL | | +------------+------------------+------+-----+---------+----------------+ 6 rows in set (0.01 sec) mysql&gt; describe views -&gt; ; +------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+------------------+------+-----+---------+----------------+ | id | int(10) unsigned | NO | PRI | NULL | auto_increment | | product_id | int(10) unsigned | NO | MUL | NULL | | | user_id | int(10) unsigned | NO | MUL | NULL | | | ip_address | varchar(15) | NO | | NULL | | | date | datetime | NO | | NULL | | +------------+------------------+------+-----+---------+----------------+ 5 rows in set (0.00 sec) </code></pre> http://stackoverflow.com/questions/1849622/mysql-indexing-strategy 1 MySQL indexing strategy Wickethewok 2009-12-04T20:59:46Z 2009-12-04T22:20:05Z <p>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.</p> <pre><code>SELECT b.isbn FROM books b WHERE b.price IS NOT NULL AND b.deleted = '' AND b.publication_date &lt;= '2009-12-04' AND ( b.subject1_id IN ('CAT1','CAT2','CAT3','CAT4','CAT5') OR b.subject2_id IN ('CAT1','CAT2','CAT3','CAT4','CAT5') OR b.subject3_id IN ('CAT1','CAT2','CAT3','CAT4','CAT5') ) </code></pre> <p>Currently, I have a separate index on all of these fields and this query takes ~4.5 seconds, which is way too long. <code>EXPLAIN</code> lists <code>NULL</code> under key.</p> <p>I also tried creating one large index that included all of the fields in the above query, but <code>EXPLAIN</code> shows that this multi-field index is not used.</p> <p>How can I index these fields to speed up my queries?</p> <p>EDIT: Here are my current indices (none of which seem to be used by the query):</p> <ul> <li>index(price)</li> <li>index(deleted)</li> <li>index(publication_date)</li> <li>index(subject1_id)</li> <li>index(subject2_id)</li> <li>index(subject3_id)</li> <li>index(price, deleted, publication_date, subject1_id, subject2_id, subject3_id)</li> </ul> <p>EDIT2: Per ʞɔıu's answer - after normalizing the tables and using basically his query, it does speed it up some (time is ~3.5 seconds now), but not as much as I'm looking for. I indexed the new table as PRIMARY KEY(isbn, subject_id) and this index is being used for the join.</p> <p>EDIT3: I added an additional index on the second table (subject_id, isbn), which helps. The addition of the other index that ʞɔıu mentions below helps a small bit, but only gets used when I use "FORCE INDEX" on the query. It's down to about 1.5 seconds now. Is there hope of getting it much lower?</p> http://stackoverflow.com/questions/1844954/how-to-default-a-column-in-a-select-query 0 How to "default" a column in a SELECT query Jeff Shattock 2009-12-04T04:58:33Z 2009-12-04T20:59:38Z <p>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 <code>C == spaces</code>. There may or may not be other rows where <code>C != spaces</code>. I have a query that gets all rows where <code>[A, B] == [in_a, in_b]</code>, and also where <code>C == in_c</code> if such a row exists, or <code>C == spaces</code> if the in_c row doesn't exist. So, if there is a row that matches the particular C value, I want that one, otherwise I want the spaces one. It is very important that if there is a matching C row, that I not be returned the spaces one along with it.</p> <p>I have a working query, but its not very fast. This is executing on DB2 for z/OS. I have full control over these tables, so I can define new indicies if needed. The only index on the table right now is <code>[A, B, C]</code>, the primary key. This SQL is kinda messy, and I feel theres a better way to accomplish this task. What can I do to make this query faster? </p> <p>The query I have now is:</p> <pre><code>SELECT A, B, C, D FROM T WHERE A = :IN_A AND B &gt; :IN_B AND (C = :IN_C OR (NOT EXISTS( SELECT B FROM T WHERE A = :IN_A AND B &gt; :IN_B AND C = :IN_C)) AND C = " "); </code></pre> http://stackoverflow.com/questions/1835470/one-id-for-every-database-column-how-to-do 2 One ID for every database column, how to do? Vittorio Vittori 2009-12-02T20:10:52Z 2009-12-03T19:35:15Z <p>I working on a food database, every food has a list of properties (fats, energy, vitamins, etc.)</p> <p>These props are composed by 50 different columns of proteins, fat, carbohydrates, vitamins, elements, etc.. (they are a lot)<br/> <b>the number of columns could increase in the future, but not too much, 80 for extreme case</b><br/> Each column needs an individual reference to one bibliography of a whole list from another table (needed to check if the value is reliable or not).</p> <p>Consider the ids, should contain a number, a NULL val, or 0 for one specific exception reference (will point to another table)</p> <p>I've though some solution, but they are very different eachothers, and I'm a rookie with db, so I have no idea about the best solution.</p> <p>consider value_1 as proteins, value_2 as carbohydrates, etc..</p> <p>The best (I hope) 2 alternatives I thought are:</p> <p><b>(1)</b> create one varchar(255?) column, with all 50 ids, so something like this:<br/></p> <pre><code>column energy (7.00) column carbohydrates (89.95) column fats (63.12) column value_bil_ids (165862,14861,816486) ## as a varchar etc... </code></pre> <p>In this case, I can split it with "," to an array and check the ids, but I'm still worried about coding praticity... this could save too many columns, but I don't know how much could be pratical in order to scalability too. Principally, I thought this option usual for query optimization (I hope!)</p> <p><b>(2)</b> Simply using an additional id column for every value, so:</p> <pre><code>column energy (7.00) column energy_bibl_id (165862) column carbohydrates (89.95) column carbohydrates_bibl_id (14861) column fats (63.12) column fats_bibl_id (816486) etc... </code></pre> <p>It seems to be a weightful number of columns, but much clear then first, especially for the relation of any value column and his ID.</p> <p><b>(3)</b> Create a relational table behind values and bibliographies, so</p> <pre><code>table values energy carbohydrates fats value_id --&gt; point to table values_and_bibliographies val_bib_id table values_and_bibliographies val_bib_id energy_id --&gt; point to table bibliographies biblio_id carbohydrates_id --&gt; point to table bibliographies biblio_id fats_id --&gt; point to table bibliographies biblio_id table bibliographies biblio_id biblio_name biblio_year </code></pre> <p>I don't know if these are the best solutions, and I shall be grateful if someone will help me to bring light on it!</p> http://stackoverflow.com/questions/1809134/sql-server-stored-procedure-if-statement-vs-where-criteria 1 SQL Server Stored Procedure - 'IF statement' vs 'Where criteria' scorpio 2009-11-27T14:36:16Z 2009-11-30T20:09:39Z <p>The question from quite a long time boiling in my head, that out of the following two stored procedures which one would perform better.</p> <p>Proc 1</p> <pre><code>CREATE PROCEDURE GetEmployeeDetails @EmployeeId uniqueidentifier, @IncludeDepartmentInfo bit AS BEGIN SELECT * FROM Employees WHERE Employees.EmployeeId = @EmployeeId IF (@IncludeDepartmentInfo = 1) BEGIN SELECT Departments.* FROM Departments, Employees WHERE Departments.DepartmentId = Employees.DepartmentId AND Employees.EmployeeId = @EmployeeId END END </code></pre> <p>Proc 2</p> <pre><code>CREATE PROCEDURE GetEmployeeDetails @EmployeeId uniqueidentifier, @IncludeDepartmentInfo bit AS BEGIN SELECT * FROM Employees WHERE Employees.EmployeeId = @EmployeeId SELECT Departments.* FROM Departments, Employees WHERE Departments.DepartmentId = Employees.DepartmentId AND Employees.EmployeeId = @EmployeeId AND @IncludeDepartmentInfo = 1 END </code></pre> <p>the only difference between the two is use of 'if statment'.</p> <p>if proc 1/proc 2 are called with alternating values of @IncludeDepartmentInfo then from my understanding proc 2 would perform better, because it will retain the same query plan irrespective of the value of @IncludeDepartmentInfo, whereas proc1 will change query plan in each call</p> <p>answers are really appericated</p> <p>PS: this is just a scenario, please don't go to the explicit query results but the essence of example. I am really particular about the query optimizer result (in both cases of 'if and where' and their difference), there are many aspects which I know could affect the performance which I want to avoid in this question.</p> http://stackoverflow.com/questions/1820730/sql-ssrs-object-has-been-disconnected-or-does-not-exist-at-the-server 0 SQL SSRS Object has been disconnected or does not exist at the server a432511 2009-11-30T16:07:25Z 2009-11-30T17:19:25Z <p>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 appropriate data, however, when I run my SSRS Report, it errors out with "Object has been disconnected or does not exist at the server."</p> <p>Any suggestions? I think it has to do with the time it takes to run all the queries.</p> <p>I have tried setting WITH RECOMPILE with no luck.</p> http://stackoverflow.com/questions/1808592/designing-mysql-index-and-primary-keying-for-efficiency 0 designing mySql index and primary keying for efficiency Ollie Jones 2009-11-27T12:49:07Z 2009-11-27T17:56:06Z <p>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 identified by three data items:</p> <ul> <li>place - a unique INT </li> <li>person - a character string, sometimes numeric and sometimes alphanumeric , eg AB12345678 </li> <li>visit -similar to person</li> </ul> <p>I don't have any control over the person and visit field contents, as these are provided by the different places, and each place does their own thing.</p> <p>I can find all the records for a person by matching both place and person, and an individual record by matching all three.</p> <p>I can make this work fine in mySql by creating a table like this:</p> <pre><code>CREATE TABLE ENCOUNTER ( PLACE int(11) NOT NULL, PERSON varchar(255) NOT NULL, VISIT varchar(255) NOT NULL, ARRIVAL_TIME datetime DEFAULT NULL, DEPARTURE_TIME datetime DEFAULT NULL, EVENT varchar(255) NOT NULL, PRIMARY KEY (PLACE,PERSON,VISIT) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC; </code></pre> <p>I went with MyISAM because I don't need ACID transactional integrity on this table; it's used for statistical reporting so if it's one or two rows stale it's no problem.</p> <p>The table will often get hit with UPDATEs that simply change one of the fields, like DEPARTURE_TIME. These UPDATEs will most likely be about twice as frequent as new row INSERTs. There won't be a need to update place, person, or visit identifiers.</p> <p>Here's some questions:</p> <p>Would I be better off performance wise with a single index and key column concatenating the place/person/visit information?</p> <p>How much of a hit do I take for varchar indexes? Is it worth trying to constrain them to a fixed-length field?</p> <p>Any other suggestions from the collected wisdom?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1796201/sub-query-optimization-talk-with-an-example-case 1 Sub-query Optimization Talk with an example case katsuo11 2009-11-25T11:04:36Z 2009-11-27T16:55:34Z <p>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 one practical)</p> <p><strong>Environment :</strong></p> <p>I have a table that contains articles with a column 'type', and another table article_version that contain a date where an article is added in the DB, and a third table that contains all the article types along with types label and stuffs...</p> <p>The 2 first tables are huge (800000+ fields and growing daily), the 3rd one is naturally small sized. The article tables have a lot of column, but we will only need 'ID' and 'type' in articles and 'dateAdded' in article_version to simplify things...</p> <p><strong>What I want to do :</strong></p> <p>A Query that, for a specified 'dateAdded', returns the number of articles for each types (there is ~ 50 types to scan). What was already in place is 50 separate count, one for each document types oO ( not efficient, long(~ 5sec in general), ).</p> <p>I wanted to do it all in one query and I came up with that :</p> <pre><code>SELECT type, (SELECT COUNT(DISTINCT articles.ID) FROM articles INNER JOIN article_version ON article_version.ARTI_ID = legi_arti.ID WHERE type = td.NEW_ID AND dateAdded = '2009-01-01 00:00:00') AS nbrArti FROM type_document td WHERE td.NEW_ID != '' GROUP BY td.NEW_ID; </code></pre> <p>The external select (type_document) allow me to get the 55 types of documents I need. The sub-Query is counting the articles for each type_document for the given date '2009-01-01'.</p> <p>A common result is like :</p> <pre> * type * nbrArti * ************************* * 123456 * 23 * * 789456 * 5 * * 16578 * 98 * * .... * .... * * .... * .... * ************************* </pre> <p>This query get the job done, but the join in the sub-query is making this extremely slow, The reason, if I'm right, is that a join is made by the server for each types, so 50+ times, this solution is even more slower than doing the 50 queries independently for each types, awesome :/</p> <p><strong>A Solution</strong></p> <p>I came up with a solution myself that drastically improve the performance with the same result, I just created a view corresponding to the subQuery, making the join on ids for each types... And Boom, it's f.a.s.t.</p> <p>I think, correct me if I'm wrong, that the reason is the server only runs the JOIN statement once.</p> <p>This solution is ~5 time faster than the solution that was already there, and ~20 times faster than my first attempt. Sweet</p> <p><strong>Questions / thoughts</strong></p> <ul> <li>With yet another view, I'll now need to check if I don't loose more than win when documents get inserted...</li> <li>Is there a way to improve the original Query, by getting the JOIN statement out of the sub-query? (And getting rid of the view)</li> <li>Any other tips/thoughts? (In Server Optimizing for example...)</li> </ul> <p><hr></p> <p>Apologies for my approximating English, it'is not my primary language.</p> http://stackoverflow.com/questions/1779836/how-to-improve-search-speeds-in-this-situation 0 How to improve search speeds in this situation? Yegor 2009-11-22T20:15:42Z 2009-11-23T23:20:26Z <p>I have a search implemented on my site, it runs the following queries:</p> <pre><code>SELECT COUNT(mov_id) AS total_things FROM content WHERE con_status = 1 AND con_incomplete = 0 AND con_type = 1 AND ((con_title) LIKE ('%search keyword%') OR soundex(con_title) LIKE soundex('search keyword') OR MATCH (con_title) AGAINST ('search keyword')); +----+-------------+--------+------+---------------+----------+---------+-------------------+-------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+--------+------+---------------+----------+---------+-------------------+-------+-------------+ | 1 | SIMPLE | movies | ref | con_type | con_type | 12 | const,const,const | 11804 | Using where | +----+-------------+--------+------+---------------+----------+---------+-------------------+-------+-------------+ </code></pre> <h3>64058 Queries</h3> <h3>Total time: 200817, Average time: 3.13492459958163</h3> <h3>Taking 2 to 25 seconds to complete</h3> <h3>Rows analyzed 1882 - 12104</h3> <p><hr></p> <pre><code>SELECT con_id, con_title, con_desc, MATCH (con_title) AGAINST ('search keyword') AS relevancy FROM content WHERE con_status = 1 AND con_incomplete = 0 AND con_type = 1 AND ((con_title) LIKE ('%search keyword%') OR soundex(con_title) LIKE soundex('search keyword') OR MATCH (con_title) AGAINST ('search keyword')) ORDER BY relevancy DESC LIMIT 0, 24; +----+-------------+--------+------+---------------+----------+---------+-------------------+-------+-----------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+--------+------+---------------+----------+---------+-------------------+-------+-----------------------------+ | 1 | SIMPLE | movies | ref | con_type | con_type | 12 | const,const,const | 11803 | Using where; Using filesort | +----+-------------+--------+------+---------------+----------+---------+-------------------+-------+-----------------------------+ </code></pre> <h3>78321 Queries</h3> <h3>Total time: 200657, Average time: 2.56198209930925</h3> <h3>Taking 2 to 16 seconds to complete</h3> <h3>Rows analyzed 0 - 15752</h3> <p>This basically works like a ghetto "fuzzy search" to ignore typos people might make. </p> <p>Unfortunately, its very slow (even if I remove soundex() or FULLTEXT searching. How to improve search speeds in this situation?</p> http://stackoverflow.com/questions/1778122/join-wont-do-it-and-sub-query-sucks-then-what 2 Join won't do it, and sub query sucks, then what? 7alwagy 2009-11-22T07:42:37Z 2009-11-23T14:23:38Z <p>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. <br /> Second: <br/> I have a portion of my database the looks like the following diagram: <br /> <img src="http://img682.imageshack.us/img682/1089/testdatamodel.png" alt="alt text"> I have contributors on the system, each write to many sources, and a source can have many working contributors. Users can subscribe to as many contributors as they like and as many sources as they like. Now, what I want to do is simply retrieve all the articles for certain user. These articles are either coming through a contributor or a source the user subscribes to. To make it easy, when a user subscribes to a source I simply copy all the sources contributors to the users_contributors table. One tricky piece, when I retrieve the user's articles I retrieve all the articles that he his contributors write, and all the articles that were published in the sources he follows where those articles doesn't have a valid contributor on the system. (I.E contributorID is null). <br /> I created the following query: <br /> </p> <pre><code> Select Articles.ArticleID, Articles.ContributorId, Contributors.Name, Sources.Name, Articles.ArticleTitle From Articles Inner Join Contributors On Articles.ContributorId = Contributors.ContributorId Inner Join Sources On Articles.SourceId = Sources.SourceID Where Articles.ContributorId in ( Select ContributorId from Users_Contributors Where UserID = 3 ) OR ( Articles.SourceId in ( Select SourceId from Users_Sources Where UserID = 3 ) and Articles.ContributorId is null ) </code></pre> <p>The problem with the above query is that, it doesn't return any article with contributorID null. I understand this is because of the join on the contributors table. What should I do in such a case? <br /> </p> <ol> <li><strong>Should I consider denormalization?</strong> </li> <li><strong>What are the prober fields to index on each table for this query to run fast (Rowset returned are approximately 10000)?</strong></li> <li><p><strong>I need to support paging on this query, will "With { }" clause be appropriate to me, or should I consider another strategy?</strong></p> <p><br /> Thanks in advance. <br /> <strong><em>Ps: I'm using SQL Server 2008</em></strong></p></li> </ol> http://stackoverflow.com/questions/1771226/how-to-detect-select-n1-problems-in-linq-to-sql 1 How to Detect Select n+1 problems in Linq to SQL? Omar 2009-11-20T15:29:30Z 2009-11-23T02:37:30Z <p>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 detect this?</p> http://stackoverflow.com/questions/1772604/tips-for-speeding-up-this-code 0 Tips for speeding up this code hfidgen 2009-11-20T19:03:14Z 2009-11-21T12:16:27Z <p>Hiya, </p> <p>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 way of doing it...</p> <p>I know regexs aren't efficient but I can't honestly see how else I can do this, especially if the Postcode data can be anything from:</p> <p>e1 2be e1ebe e10ebe e10 ebe ex1 ebe ex1ebe</p> <p>and so on...</p> <p>Thanks a lot for any coding tips, H</p> <pre><code>$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Amma Gawd! Someone ate our database!'); mysql_select_db($dbname); $result = mysql_query("SELECT * FROM `Consumer` WHERE left(`Postcode`,2) = 'E' OR left(`Postcode`,1) = 'N' OR left(`Postcode`,1) = 'W'"); while($row = mysql_fetch_array($result)) { $email = $row['Email']; if (preg_match("/^[Ee]{1}[0-9]{2}/",$row['Postcode'])) { mysql_query("UPDATE `Consumer` SET `CONYES` = '1' WHERE `Email` = '$email'") or die ("Bugger"); $counter = $counter +1; } elseif (preg_match("/^[Nn]{1}[0-9]{2}/",$row['Postcode'])) { mysql_query("UPDATE `Consumer` SET `CONYES` = '1' WHERE `Email` = '$email'") or die ("Bugger"); $counter = $counter +1; } elseif (preg_match("/^[Ww]{1}[0-9]{2}/",$row['Postcode'])) { mysql_query("UPDATE `Consumer` SET `CONYES` = '1' WHERE `Email` = '$email'") or die ("Bugger"); $counter = $counter +1; } } $result1 = mysql_query("SELECT * FROM `Consumer` WHERE left(`postcode`,2) = 'BR' OR left(`postcode`,2) = 'CR' OR left(`postcode`,2) = 'EC' OR left(`postcode`,2) = 'EN' OR left(`postcode`,2) = 'KT' OR left(`postcode`,2) = 'NW' OR left(`postcode`,2) = 'RM' OR left(`postcode`,2) = 'SE' OR left(`postcode`,2) = 'SM' OR left(`postcode`,2) = 'SW' OR left(`postcode`,2) = 'TW' OR left(`postcode`,2) = 'WC' OR left(`postcode`,2) = 'BD' OR left(`postcode`,2) = 'HG' OR left(`postcode`,2) = 'LS' OR left(`postcode`,2) = 'WF' OR left(`postcode`,2) = 'YO' OR left(`postcode`,2) = 'HD' OR left(`postcode`,2) = 'HX'"); while($row1 = mysql_fetch_array($result1)) { $email = $row1['Email']; mysql_query("UPDATE `Consumer` SET `CONYES` = '1' WHERE `Email` = '$email'") or die ("Bugger"); $counter = $counter +1; } echo $counter; mysql_close($conn); </code></pre> http://stackoverflow.com/questions/1771633/optimize-sql-query-for-canceled-orders 2 Optimize SQL query for canceled orders Chris 2009-11-20T16:26:27Z 2009-11-20T16:45:29Z <p>Here is a subset of my tables:</p> <pre><code>orders: - order_id - customer_id order_products: - order_id - order_product_id (unique key) - canceled </code></pre> <p>I want to select all orders (order_id) for a given customer(customer_id), where ALL of the products in the order are canceled, not just some of the products. Is there a more elegantly or efficient way of doing it than this:</p> <pre><code>select order_id from orders where order_id in ( select order_id from orders inner join order_products on orders.order_id = order_products.order_id where order_products.customer_id = 1234 and order_products.canceled = 1 ) and order_id not in ( select order_id from orders inner join order_products on orders.order_id = order_products.order_id where order_products.customer_id = 1234 and order_products.canceled = 0 ) </code></pre>