Viewing 15 posts - 256 through 270 (of 289 total)
It is indeed.
Open up your reporting server config file and open it in a text editor.
It's usually located somewhere like
C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.config
Find the line:
<Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering" Visible="false"/>
and...
May 24, 2013 at 7:13 am
It is possible to do this, you need to look into creating a Data Processing Extension.
Try
http://msdn.microsoft.com/en-us/library/ms154655%28v=sql.105%29.aspx
to get started.
April 23, 2013 at 7:11 am
You can't hide the expander on the actual item you are using to toggle if it needs to be displayed i.e. the country name.
What I have done before to get...
April 22, 2013 at 9:19 am
Don't know much about how your proxy's work but shouldn't it be more like:
http://wsf.cdyne.com:8080/WeatherWS/Weather.asmx?WSDL
Otherwise I think it would be trying to the pass the ":8080" as part...
February 8, 2013 at 4:59 am
I get the same file as you if I dont append the "?WSDL" onto the end of the URL.
Can you confirm you definitely did this as the file you attached...
February 8, 2013 at 4:43 am
Did you definitely overwrite the existing file or choose a new file name?
I've attached the WSDL file I recieve. Could you attach yours?
February 8, 2013 at 4:16 am
Hi Richard,
I'd be more inclined to think there is a problem on your end rather then ALL the tutorials being wrong.
My point was that when setting up the connection you...
February 8, 2013 at 3:42 am
Hi Niharika
I'm assuming you are using SSRS when you say a report filter parameter?
My MDX isn't great but what I'd do is create set using a range. So using you...
November 26, 2012 at 7:12 am
Hi Javierja,
Did you set up the HTTP connection correctly? You need to have the full address of the web service you wish to download the WSDL for in the...
November 16, 2012 at 5:02 am
I don't think you can use ReportItems (e.g. your textboxes) in an indicator expression.
You should be able to use your expressions directly depending on their scope. If they are...
October 8, 2012 at 9:38 am
Your function is missing the question mark between the reportserver URL and report path and you are missing the ampersand between the report name and rs:Command.
Put your formula into a...
October 4, 2012 at 8:29 am
Hi,
Content manager should by default do the job.
Open up your Reporting Services instance (set the server type to Reporting Services to connect to the actual Reporting Services instance, not...
September 14, 2012 at 3:00 am
I wouldn't recommend it considering users are not stored in the Catalog table.
Here is a link to a good series of blog posts explaining the Reportserver schema.
http://sornanara.blogspot.co.uk/2011/05/ssrs-reportserver-database-tables.html
Make sure you know...
September 14, 2012 at 2:39 am
Hi Mike,
I think what you are want to do is:
Tick the add header checkbox when you add the Group or if it already added right click the Details group and...
September 14, 2012 at 2:12 am
The shard eyed among you might have spotted you don't need to use DISTINCT and UNION ALL, just use UNION instead. 😛
SELECT Month as [Value]
FROM [DateTbl]
WHERE @Parameter1 = 'Month'
UNION
SELECT...
September 13, 2012 at 10:09 am
Viewing 15 posts - 256 through 270 (of 289 total)