Viewing 15 posts - 826 through 840 (of 887 total)
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
Hi,
A good principle to follow when designing fact tables, is to always store the data at the more granular level. You can always aggregate up, but never down, and create...
November 5, 2010 at 6:39 am
I hate to say this...but it depends.
The general best practice would be to have a helper table, that contains the surrogate keys of both the fact and dimension...and a factor....
October 22, 2010 at 1:22 pm
No, you shouldn't have an extra entry in the fact table...because there isn't another transaction for that amount and your numbers will double when aggregated.
There are a few ways to...
October 22, 2010 at 7:24 am
AmcAmx (8/11/2010)
I got it working ! FINALLY !!! Here is what I had to do....
The variable that I created to store the...
August 11, 2010 at 4:34 pm
Chris,
What about the Data Flow task itself. The screenshot I posted was the properties of the Data Flow Task, and not the Source Connection...
Another question: Does your OLEDB Source Connection...
August 11, 2010 at 2:14 pm
Viewing 15 posts - 826 through 840 (of 887 total)