Viewing 15 posts - 496 through 510 (of 595 total)
Have you added any custom assemblies to the SSAS instance?
December 9, 2013 at 6:49 am
Hi George,
I'm glad you figured it out - apologies, I had gone home for the weekend and I don't even like to think about this sort of thing at the...
December 9, 2013 at 2:06 am
Probably the best way to achieve this would be by implimenting Role Based Security in your OLAP database. Here[/url] is a good article about it all.
December 6, 2013 at 3:32 am
You could generate a calculation in your cube using ParallelPeriod. Then you can use your Date dimension to slice and dice the data as you need. A simple example would...
December 6, 2013 at 3:26 am
December 5, 2013 at 8:50 am
I had a similar thing once where I had to so a sum of a count only for an unknown year and excluding certain statuses.
I did this
SUM({(FILTER([Repair Date].[Year].MEMBERS,[Repair Date].[Year].CURRENTMEMBER.NAME...
December 3, 2013 at 7:14 am
Well Greg has gone right ahead and answered the question not directly but brilliantly. I would listen to him - role based security in ssas is incredibly powerful and completely...
November 25, 2013 at 8:03 am
Ah so it's SSIS.
To be honest with you, problems with deployment don't happen so often - as long as the account doing the deployment has permissions to deploy packages...
November 22, 2013 at 8:41 am
What are you deploying? What errors are you getting? Please be more specific
November 22, 2013 at 5:24 am
BI Documenter from Pragmatic Works is pretty good and would do what you need. It will set you back a cool $595 though :ermm:
In SQL 2012 you have the SSISDB...
November 21, 2013 at 9:21 am
You can put parameters on the report and then have specific parameters for specific subscriptions, filtering the data by the user's needs.
November 21, 2013 at 8:14 am
When you say assembly do you mean in the sense of say, a .net assembly? If so you can add these to your AS server instance. Have a look at...
November 21, 2013 at 3:38 am
If you have the packages stored in the SQL Server then you could do something like this:
SELECT Name, CONVERT(xml,CONVERT(varbinary(max),PackageData)) AS PackageSource
FROM msdb.dbo.sysssispackages
WHERE CONVERT(varbinary(max),PackageData) LIKE '%Your Table Name%'
It's...
November 20, 2013 at 9:39 am
Viewing 15 posts - 496 through 510 (of 595 total)