Viewing 15 posts - 5,281 through 5,295 (of 11,678 total)
Scott Murray-240410 (8/8/2013)
August 8, 2013 at 5:26 am
You'll need something like:
SUM(CASE WHEN C.Contact_Date = MT.[Date of Expense] THEN 1 ELSE 0 END)
August 8, 2013 at 4:36 am
What I usually to is create a quick analysis in the cube browser, and then recreate the same data in SQL. (the ROLLUP function can be useful to calculate totals...
August 8, 2013 at 3:42 am
There's maybe a reason why you cannot do this: you are not the admin.
Granting members to the db_owner rule is making them admin on that database.
If you want to do...
August 8, 2013 at 3:40 am
It seems you do not have the permissions to add a new member to the db_owner role (which is the most priviliged role on the database level).
Are you an administrator?
August 8, 2013 at 3:14 am
Is a claim bound in any way to a policy? If yes and claim is just a smaller level of detail of a policy, than I would create just one...
August 8, 2013 at 3:13 am
You can use the UNION ALL component to get the results of the three sources together.
After each source, you can use a derived column component to add the T-Type column.
August 8, 2013 at 2:30 am
I would think Developer would be enough, but I'm not a licensing expert.
August 8, 2013 at 1:46 am
IT researcher (8/8/2013)
Koen Verbeeck (8/8/2013)
This is a good start on the subject:
We tried to implement it.But if inner transaction gets commit first.I want inner transaction to roll backup...
August 8, 2013 at 1:45 am
Jeff Moden (8/7/2013)
Sean Lange (8/7/2013)
August 8, 2013 at 12:48 am
Try this:
DECLARE @buyer VARCHAR(10) = '12, RRRRR';
SELECT CAST(SUBSTRING(@buyer,1,CHARINDEX(',',@buyer,0) - 1) AS INT)
August 8, 2013 at 12:46 am
mario17 (8/7/2013)
How about linked servers?http://technet.microsoft.com/en-us/library/ff772782.aspx
This should work
M
Linked servers bring a whole world of pain with them.
The lookup solution will be more performant.
August 8, 2013 at 12:42 am
That book is just an introduction to the concepts, it doesn't contain enough detail to get you through the exams.
I didn't do the 70-457 exam, I did the 3 exams...
August 8, 2013 at 12:41 am
I think one of my first "eureka" moment - as Jeff calls it - was when I read Jeff's article about the Tally table 😀 The "Numbers" or "Tally" Table:...
August 8, 2013 at 12:16 am
The correct term is "flattening the parent-child hierarchy" 🙂
Anyway, this thread holds some solutions:
http://www.sqlservercentral.com/Forums/Topic1071035-392-1.aspx
August 8, 2013 at 12:11 am
Viewing 15 posts - 5,281 through 5,295 (of 11,678 total)