Viewing 15 posts - 2,581 through 2,595 (of 11,678 total)
Ryan1 (6/17/2014)
The measure group is made from the view which does not contain any of these dimensions, therefore there is no key which matches the 'Measure Group Column'.
Can you give...
June 17, 2014 at 1:32 pm
SQLTougherGuy (6/17/2014)
June 17, 2014 at 1:31 pm
Kaput?

Oh Steve, why have thou forsaken us?
June 17, 2014 at 1:15 pm
vignesh.ms (6/14/2014)
I have tried this using Foreach File Enumerator. It works fine for same delimiters, but I...
June 17, 2014 at 1:12 pm
There are quite some differences between 2005 and 2012, in all three of them.
SSAS will be OK for most parts. SSRS might be more difficult, as 2012 uses the more...
June 17, 2014 at 1:09 pm
hoseam (6/17/2014)
I need to Use SSAS, I want to learn about Cubes and all of that, the SSAS part of BI. It's for learning purpose nothing more.
If money is an...
June 17, 2014 at 1:03 pm
Ryan1 (6/17/2014)
Gender, Automobile, and Customer is from view one which contains only data that is directly linked to dimensions.
Dates is a...
June 17, 2014 at 1:00 pm
Sean Lange (6/17/2014)
You could make this a lot simpler and skip the cte entirely.
SELECT @Total = count(CAST(id AS VARCHAR(60))) FROM cat_transaction
EXCEPT
SELECT ext_reference FROM Patricia.dbo.BUDGET_LINE
I beg to differ:
SELECT ID...
June 17, 2014 at 10:21 am
Luis Cazares (6/17/2014)
I'm not sure what happened in here :w00t:
Inception!
June 17, 2014 at 10:14 am
EdVassie (6/17/2014)
Create a different account on your machine and rerun the install...
June 17, 2014 at 10:10 am
Maybe your production database got slower 😉
June 17, 2014 at 7:45 am
Since transaction are atomic, you cannot resume them somewhere in the middle. Either it finished, or it rolled back and "never happened".
June 17, 2014 at 7:43 am
crazy_new (6/17/2014)
Thanks Koen,Got it working.
Really appreciate your help man.
No problem, it is my pleasure. 🙂
June 17, 2014 at 7:25 am
Do it like this:
WITH CTE_Test (ID)
AS
(
SELECT CAST(id AS VARCHAR(60)) FROM cat_transaction
EXCEPT
SELECT ext_reference FROM Patricia.dbo.BUDGET_LINE
)
SELECT @Total = COUNT(ID)
FROM
CTE_Test;
June 17, 2014 at 7:18 am
If someone at the company has an MSDN subscription, you can download the SQL Server installation media.
June 17, 2014 at 6:48 am
Viewing 15 posts - 2,581 through 2,595 (of 11,678 total)