Viewing 15 posts - 391 through 405 (of 1,222 total)
I definitely agree with what StevefromOz says...aggregations are the way to go so that you can get good performance with little effort.
January 31, 2013 at 4:16 pm
Underneath the rapper, Analysis Services pre-calculates various sub-totals for the different dimensions you have in your cube.
It does this so then when you ask for the value of...
January 30, 2013 at 9:15 pm
Yes - just install Visual Studio (same version as used by BIDS - this changes depending on the version of SQL Server you are using) and include C# as part...
January 30, 2013 at 8:14 pm
I think that something like the following might do what you are after...
with member measures.AllSalesAmountOfWholeCompany AS
(SUM
( { ( [Company].[All Company].[COMET],
[Stores].[Stores].[Stores]
)
}
...
January 21, 2013 at 8:22 pm
Your issue may be the same but the resolution is potentially not the best. You should be able to add the new article to the existing publication.
Unfortunately, I...
November 4, 2012 at 4:14 am
How about having a look at the info published by Microsoft on how replication works. There is stacks of info available in Book Online, Technet and MSDN. Perhaps...
November 1, 2012 at 5:33 pm
You need to add the new article to the existing subscription (or create a new subscription if you prefer). Just creating a new article in an existing publication will...
November 1, 2012 at 4:59 pm
An expression something like
="Report_Name for " & JOIN (Parameters!month.value, ",")
might be what you need
October 15, 2012 at 9:36 pm
I would not be attempting to execute an external program from within a transaction - there are many potential problems including security (which I suspect may be your current problem)...
October 8, 2012 at 9:24 pm
For a table to be used in transactional replication it must have a primary key (a unique constraint is not enough). This is, most likely, the cause of your...
September 27, 2012 at 10:26 pm
try changing the name of the image to
images/logo.png
I think that reporting services is probably attempting to use a path relative to the location of the report and is...
September 23, 2012 at 11:04 pm
You can do this by adding a custom renderer to reporting services based on the existing CSV renderer.
To do this you need to edit the reporting services config...
September 23, 2012 at 10:59 pm
Whilst I gaven't had a need to do this, I kinda expect that you could check what values you have for Globals!RenderFormat.Name and base the initial state of these drilldowns...
September 10, 2012 at 11:39 pm
I think that you would be OK to simply restart SQL Server.
However, to be safe, take a backup of the files on drive E: and F: first (with SQL Server...
September 6, 2012 at 10:03 pm
To me, Active and Residential seem to be dimensions. Defining them as dimensions means you can easily find info about active residential records etc. If they are a...
September 3, 2012 at 10:08 pm
Viewing 15 posts - 391 through 405 (of 1,222 total)