Viewing 15 posts - 481 through 495 (of 595 total)
January 15, 2014 at 3:40 am
Have a look at the trim function I linked to above. You can specify characters that you need to have removed from the column. Either that or identify the guilty...
January 14, 2014 at 8:00 am
Hmmmm, what is the data type of the particular column in the database?
Sometimes users can put strange characters into varchars and nvarchars like tabs and carriage returns so you could...
January 14, 2014 at 3:09 am
Sounds like it might be an illegal xml character. What version of SSRS are you running and what version of Excel are you exporting to?
January 13, 2014 at 8:50 am
The Subscriptions table in your ReportServer database should have this information in the Details column.
January 10, 2014 at 8:31 am
Have a look at using VisualTotals as this will show a grand total of non-filtered members only.
December 12, 2013 at 6:08 am
This'll do it:
(DT_DBTIMESTAMP) (DT_DBDATE) DATEADD("D",-(DAY(DATEADD("M",1,GETDATE()))),DATEADD("M",1,GETDATE()))
To clarify, I'm converting the DATETIME into DATE to strip the time and then re-converting back to DATETIME.
🙂
December 12, 2013 at 4:09 am
You'll only be able to use parameters if the calculation is part of a query (say, one that's being run from SSRS).
Depending on exactly what your parameter is passing...
December 12, 2013 at 2:50 am
Grant Fritchey (12/11/2013)
December 11, 2013 at 3:53 am
Ah ok, I didn't think of that. Perhaps if you created a measure group from your candidate data you could include a StartTermDateKey (or however you would name it) in...
December 10, 2013 at 3:50 am
Have a look at this[/url] article on writing dynamic XMLA for use within T-SQL. Using these methods you should be able to write something that will change your backup destination...
December 10, 2013 at 2:38 am
You don't need to use FILTER here. This would suffice:
select
{[Measures].[Reseller Order Count],[Measures].[Discount Amount]} ON 0,
{[Reseller].[Reseller Type].[Business Type].Allmembers} on 1
FROM
[Adventure Works]
WHERE
[Geography].[Country].&[Canada]
December 9, 2013 at 9:32 am
Your problem is described and diagnosed here: http://stackoverflow.com/questions/9668615/cant-reload-our-tfs-analysis-cube-due-to-snapshot-isolation
December 9, 2013 at 8:45 am
The fact that you have to ask that means that the answer is probably no 😀
So where are you trying to process from? SSMS? A BIDS project?
What is the specific...
December 9, 2013 at 7:13 am
Viewing 15 posts - 481 through 495 (of 595 total)