Viewing 15 posts - 826 through 840 (of 893 total)
I'm no hardware expert, but in this case it wouldn't matter since you have all disks in the array. Being in RAID 5, all your data is striped across all...
August 25, 2011 at 2:08 pm
Yes, with "SQL Binaries" they probably mean the installation files and folders.
IMHO I don't think it is as much a performance issue. I suppose the spindles could work overtime if...
August 25, 2011 at 1:32 pm
komal145 (8/25/2011)
=JOIN(Parameters!Color.Label,",")
The above is your problem. By default, Reporting Services will take all the selected values from the multi-select dropdown and concatenate them. If you pass this into a stored...
August 25, 2011 at 1:16 pm
The only other suggestion I could add over and above what was already said, is to do as little formatting as possible.
Make all your destination columns varchar...you rather want...
August 18, 2011 at 8:55 am
kumar1 (8/12/2011)
Do I need to wait all the way until the inside sp gets finished.
Can I get mainsp result fastly, as not holding to wait until the innersp done???
I...
August 12, 2011 at 1:13 pm
If the execution plans are different, it means that SQL Server's optimizer decided (based on your predicate) to use a different way to get the results. That could be because...
August 11, 2011 at 1:29 pm
NJ-DBA (8/11/2011)
August 11, 2011 at 12:45 pm
loki70 (4/4/2011)
April 4, 2011 at 1:56 pm
Yuri55 (4/4/2011)
By default there are 6 possible Export formats but I would like to keep let say only 2
(Excel and...
April 4, 2011 at 1:45 pm
Sumac (3/24/2011)
March 28, 2011 at 1:07 pm
Hi,
What you should be doing in this case, is to change your Question dimension to a type 2 SCD. By doing that you will be able to track the changes...
December 22, 2010 at 10:32 am
I guess the only question in my mind now is- should i stop using a table #B at all when i create the OLAP framework..since the primary purpose of table...
November 5, 2010 at 4:01 pm
You can use CTE's in combination with Row_Number() function to achieve this.
For example:
with Image_CTE
as
(
select ...
, <row_number function>
from <table>
where image is not null
)
,
Signature_CTE
as
(
select ...
, <row_number function>
from <table>
where signature is not...
November 5, 2010 at 1:48 pm
tmitchelar (11/5/2010)
From what I gathered in his post, the calculations only occur at the higher grain level, not the lowest. So he loses those calculations at the lower granularity....
November 5, 2010 at 8:24 am
Viewing 15 posts - 826 through 840 (of 893 total)