Viewing 15 posts - 61 through 75 (of 238 total)
Two thoughts come to mind. Firstly you need to make sure the web server has the appropriate print drivers installed. They are usually different versions to your client machines (e.g....
April 4, 2013 at 11:06 pm
Just a note on units of measurement.
I have previously worked with many laboratory databases and there is always need for a unit conversion look up table for any sort...
April 4, 2013 at 10:42 pm
walter.anto (4/4/2013)
I have a problem to calculate the variance.
Here is the code I use:
Axis([Measures]).item(0)-Axis([Measures]).item(1)
Dynamically, the calculated measure makes the subtraction between the first measure and the second measure.
On the other...
April 4, 2013 at 10:30 pm
What I mean is that ID's are usually foreign keys that link to other tables. In a datawarehouse you should be using surrogate keys for all your dimensions and link...
March 26, 2013 at 6:56 pm
filipetatarli (3/25/2013)
To simplify there is a fact table (fact_Proc) and two dimension (Dim1 and Dim2). The structure is:
fact_Proc :
id int identity(1,1)
id_Dim1 int...
March 26, 2013 at 5:02 pm
This works on the adventure works cube.
Post your query
WITH Member [Measures].[Something Made Up] as
(
[Measures].[Internet Order Count]
)
Select
{
[Measures].[Internet Order Count]
,[Measures].[Something Made Up]
}
On Columns,
(
[Sales Territory].[Sales Territory Country].&[Canada]
)
on rows
FROM [Adventure Works]
March 19, 2013 at 4:53 pm
mbrady5 (3/18/2013)
I'd like to change a field value in my main data source query using a parameter. I cannot figure this out.
I'd like to be able to use a parameter...
March 18, 2013 at 10:02 pm
No need to have a separate fact table to store all those dates.
The ticket process is actually a perfect candidate for an accumulating fact table[/url].
If you are interested in a...
March 18, 2013 at 9:51 pm
I made a typo in there sorry, left off a square brack and forgot the keyword "Member".
Yes it's always too early for MDX! Obviously by my error it was too...
March 18, 2013 at 4:55 pm
yay!!
You can alias a measure in a calc:
With [Measures.[Yesterday Clicks] as
(
[Measures].[Click Count]
)
That's going to cause you problems though, if you want to show both today's and yesterday's clicks on the...
March 18, 2013 at 12:09 am
There's two issues here. Firstly MDX won't let you put measures on both the columns and the rows. Best to keep measures on the columns and dimensions on the rows....
March 17, 2013 at 6:04 pm
Sharon S (3/8/2013)
I am trying to create the Expression equivalent of the following query:
SELECT count(TasksName)
FROM [db].[dbo].[testdetails]
where TopLevelProjectName = '40 Project Folder'
and TasksName = 'Project Info'
I basically need a...
March 13, 2013 at 12:08 am
Take a look at this for troubleshooting reporting services logs http://blogs.msdn.com/b/deanka/archive/2010/02/16/troubleshooting-subscriptions-part-ii-using-the-report-services-trace-log-file.aspx
These both look like different issues.
Stanja appears to be related to the SQL Agent, Vinny looks to be an...
March 12, 2013 at 6:08 pm
Yes, I have created hundreds of reports of all different kinds, from all different datasources, including very standard items like invoices and quotes and very complex reports such as analytical...
March 11, 2013 at 5:58 pm
March 11, 2013 at 5:54 pm
Viewing 15 posts - 61 through 75 (of 238 total)