Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
SELECT v_size.style,   
         v_size.color,   v_size.size,  v_size.qty,
         cancelmonth=(case convert(char(4),datepart(year,v_size.canceldate))+'/'+right(convert(char(3),datepart(month,v_size.canceldate)+100),2)   
               when '1901/01' then '' else convert(char(4),datepart(year,v_size.canceldate))+'/'+right(convert(char(3),datepart(month,v_size.canceldate)+100),2) end),
         v_size.onhand, v_size.wip, v_size.onorders, v_size.div, v_size.category
    FROM v_size
   WHERE (( v_size.canceldate between '1-1-2012' and '12-31-2012' ) 
                                             or ( v_size.canceldate = '1901-01-01' ) )
AND  
         ( v_size.style between '0' and 'zzz' )   
ORDER BY V_SIZE.STYLE, V_SIZE.COLOR, V_SIZE.qty

Here a problem when executing this query. This select query contain a view v_size. That view created by many unions. And that view have a view also. So the execution time of this query takes more than 15mins to retrieve 21677 rows. Can anyone help me how to optimize this query?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.