Viewing 15 posts - 61 through 75 (of 212 total)
Stored procedures in SSAS are implemented via assemblies (and they're different from what you're thinking of.)
The question here, is what are you looking to do? Why are you looking to...
May 29, 2008 at 2:02 pm
Before creating subscriptions, you need to ask yourself if you need to run the report with the users access. If all users run reports with the same access, then you...
May 29, 2008 at 1:45 pm
Yes it's possible, but it's unclear exactly what you're asking for. Please clarify and add some specifications (i.e. data source, final result, etc.)
May 29, 2008 at 1:39 pm
You'd have to format the hours yourself. I'd have to try it out, but something like:
= Format(Fields!OutboundHours.Value / 3600, "#")
+ ":"
+ FormatDateTime(DateAdd("s",Fields!OutboundHours.Value,0),"mm:ss")
should work. Didn't check the syntax. Hopefully you...
May 27, 2008 at 3:41 pm
As I understand your query, you want to simply suppress the parameter query from executing, if you've already supplied a value. This assume that the value is correct.
As far as...
May 27, 2008 at 8:10 am
Very similiar in MSRS:
[Code]
=FormatDateTime(DateAdd("s",Fields!OutboundHours.Value,0),"HH:mm:ss")
[/Code]
Here's some references for you:
http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx
http://msdn.microsoft.com/en-us/library/aa262710(VS.60).aspx
May 27, 2008 at 8:00 am
What were you trying to do?
May 27, 2008 at 7:40 am
What you're detailing is certain possible, the details are in the implementation.
I think what you want id:
- You have a "fact" table, with purchases (and otherwise keyed).
- You want to...
May 27, 2008 at 7:37 am
"future-is-back" please don't double post (http://www.sqlservercentral.com/Forums/Topic506512-147-1.aspx)
Since you've obviously seen these posts, these are all good references. Once you've got your cube up and running, you'll need a front end. Excel...
May 27, 2008 at 7:24 am
You really need to provide some details when posting this type of query. Exactly what message are you getting when you attempt to run the query? Was there anything in...
May 27, 2008 at 7:13 am
Just to confirm for people:
MDX indeed DOES NOT support the datetime format in the manner you may be expecting. To understand that, you'll notice that there are MDX fuinctions like...
May 23, 2008 at 8:58 am
Basically, Report Services is a "web product" that renders data in HTML (through IIS) and Analysis Services is a OLAP product (calculation engine with data storage) that optimizes the calculations...
May 23, 2008 at 8:38 am
As a reminder, remember that their are separate rendering engines for the differfent output types, although there's overlap on the code (they share some components). So sometimes you'll find a...
May 21, 2008 at 8:20 am
In general, I'd say yes, there should be separate items. If something can be different sizes, then generally they can't truely be the same thing.
The exception to this is when...
May 20, 2008 at 12:57 pm
After rereading your original post, I realised your dimension has 33 million records (when I originally assumed you were talking about the data table).
This is indeed a very large dimension....
May 20, 2008 at 5:25 am
Viewing 15 posts - 61 through 75 (of 212 total)