Viewing 9 posts - 1 through 9 (of 9 total)
You can do this on any of your SPs that use views; just replace the view reference with the select statement from the view. I know it doesn't make sense...
September 5, 2008 at 9:24 am
Is your report configured to use the incoming parameter? Is your data source configured to use the mapped report param?
September 5, 2008 at 8:02 am
Have you tried disabling the indexes prior to the insert; then enabling them once inserted? This should provide a significant boost.
September 5, 2008 at 7:54 am
It also depends on how much data will be returned. Usually when a lot of data will be returned it is faster to do a scan (even a table scan)....
September 5, 2008 at 7:44 am
Full text is good for when you have searches with the wild card prior to any text. When this happens it causes SQL Server to do a full scan on...
September 5, 2008 at 7:33 am
You may not actually have a problem. If the majority of the resources are used in the ORDER BY clause and the ordered column is using a non-clustered index, it...
September 5, 2008 at 7:20 am
Our team has actually avoided using views altogether. Time and time again, you can take the same SQL statement from a view and use it in the SP (instead of...
September 5, 2008 at 6:51 am
Yihong,
You stated your query in a Data Warehouse uses 8 tables joined together. Usually the DW queries are denormalized to a point where very few joins are used. Is there...
September 5, 2008 at 6:39 am
Alex,
Are the tables in your FROM clause ordered correctly? One thing that I've noticed is that not a lot of folks are aware that you start listing the tables in...
September 5, 2008 at 6:30 am
Viewing 9 posts - 1 through 9 (of 9 total)