Viewing 15 posts - 211 through 225 (of 282 total)
The application is a cross-reference piece that cross-references symbols from different data providers (symbolsetIDs). In the end it's used to display stock market information / research to web clients.
October 7, 2005 at 11:52 am
The idea is...
The table in question contains a list of Symbols that are associated to SymbolSetIDs.
I need to be able to lookup data from this (and other joined tables), based on...
October 7, 2005 at 11:47 am
Indexed view idea is to speed up performance.
The task is extremely complex. Do you seriously want me to post a novel on what this nasty query is trying to accomplish?
October 7, 2005 at 11:33 am
Derived tables also not allowed in Indexed Views. That's yet another restriction of these oh-so-helpful-pain-in-the-ass-indexed-views.
October 7, 2005 at 11:03 am
October 7, 2005 at 9:35 am
Could you post the text of the proc ?
October 6, 2005 at 12:39 pm
Thanks, I've already seen that. I was hoping to get feedback from someone who actually uses it in a production environment. But thanks for teaching me how to use google...
October 6, 2005 at 11:47 am
Lookup "Backup Log" in Books Online and you should be able to figure it out from there.
October 3, 2005 at 11:45 am
Have you thought about having a single stored procedure that returns all the data needed for this page? Reducing round trips is usually a decent way of imrpvoing performance. Also,...
October 3, 2005 at 11:32 am
Try this:
select terms.key,
CASE
when plan.desc like 'Lendered%' then terms.amt as "Broked"
when plan.desc then terms.amt
end as plandesc
from terms, plan
where terms.key = plan.key and desc like 'Lendered%'
rather than:
select terms.key,
CASE plan.desc
when ...
September 28, 2005 at 4:04 pm
I had to re-order the columns in the clustered index on the view, and that seemed to fix my execution plan(s).
September 28, 2005 at 12:41 pm
Disregard this post, I managed to figure it out.
September 28, 2005 at 12:37 pm
1.5 MB is not a "big growth" for most SQL databases. Did you mean to say 1.5 Gig?
September 28, 2005 at 10:19 am
September 27, 2005 at 5:53 pm
Viewing 15 posts - 211 through 225 (of 282 total)