Viewing 15 posts - 121 through 135 (of 145 total)
We have a fairly standard real life example where this would be useful and not a indication of poor table design. We get daily data feeds from third party...
September 22, 2010 at 7:51 am
Value assigment only uses one equal sign. But I think in the expression builder you can only set the full value to another value, not part of the value...
September 3, 2010 at 11:06 am
I suggested several ways that you could append the date and time to the file name:
1. Rename the file AFTER loading to the database
2. Use a variable to hold the...
July 15, 2010 at 8:27 am
What it sounds like is that the current time has changed between when you named the file and when the connection manager is trying to connect. Is it necessary...
July 13, 2010 at 2:32 pm
You can add custom code to a report. I don't have 2008, but in 2005 you added code selecting the report and then the properties page (or right clicking...
June 16, 2010 at 10:49 am
You saying that you are getting all null values for the Question Code and suffix when trying to use them as calculated measures? If so, that usually means that...
June 16, 2010 at 8:41 am
Does this work?
WITH MEMBER [Measures].[Question Code] AS '[Questionnaire].Properties("Question Code")'
MEMBER [Measures].[Question Code Suffix] AS [Questionnaire].Properties("Question Code Suffix")'
SELECT {[Measures].[Survey Count],[Measures].[Question Code], [Measures].[Question Code Suffix]} ON 0,
([Customer].[First Name].[First Name],
[Customer].[Last Name].[Last Name]) ON 1
FROM...
June 15, 2010 at 1:48 pm
Have you tried moving any of those Customer attributes to calculated members instead of having them in the cross joins?
June 15, 2010 at 12:21 pm
Have you tried using the MEMBER_CAPTION property to get the month name?
WITH MEMBER [Measures].[ParameterCaption] AS LinkMember([Id Fecha Orden Pago].[N Mes].CURRENTMEMBER.MEMBER_CAPTION MEMBER [Measures].[ParameterValue] AS [Id Fecha Orden Pago].[Mes].CURRENTMEMBER.UNIQUENAME MEMBER [Measures].[ParameterLevel] AS...
June 9, 2010 at 2:55 pm
We use LogParser http://www.microsoft.com/downloads/details.aspx?familyid=890cd06b-abf8-4c25-91b2-f8d975cf8c07&displaylang=en. Basic setup is LogParser in a batch script run by a scheduled job. There are a lot of examples for LogParser out there to...
June 9, 2010 at 2:27 pm
I have the 2005 version of that book and I didn't find it very helpful for more complex SSRS reports and admin. It spends a lot of time on...
June 4, 2010 at 12:55 pm
We are going through the same assessment for our production systems, however we are going from SQL 2005 to 2008. Our hardware is pretty beefy as we upgraded it...
May 18, 2010 at 6:44 pm
Start with the extensive Microsoft documentation on upgrading: http://msdn.microsoft.com/en-us/library/bb500469(v=SQL.100).aspx. I recommend that you use the Upgrade Advisor to help identify any possible issues or incompatibilities.
May 14, 2010 at 11:20 am
If you are just jumping to another report and Report1 is the report name then you just need to fix up your code replacing the empty string with Nothing:
=IIF(Fields!structID.Value >...
May 14, 2010 at 11:01 am
You need to put an equal sign in front of the values in the value setting of the filter.
May 14, 2010 at 10:49 am
Viewing 15 posts - 121 through 135 (of 145 total)