Viewing 15 posts - 1 through 15 (of 85 total)
Have you tried creating a parameter which takes in A,B,C as value and another parameter which depends on the first dataset for operations to perform .
Read cascading parameter :-...
December 16, 2013 at 3:18 am
Pros :- Automated process don't have to bother about scheduling report every now and then. Data driven subscription allows you to pass multiple parameters without bothering about reports. Reports generated...
December 16, 2013 at 3:13 am
Very good initiative.
http://www.sqlservercentral.com/articles/SQLServerCentral/105392/
-- Delete Duplicate Data
; WITH CTE AS (
Select A,B, RowNum = Row_Number() OVER (ORDER BY A)
From t_TAble1
)
DELETE FROM CTE
WHERE RowNum > 1
Thanks,
Ankit
December 5, 2013 at 2:34 am
Either use RenderFormat = ExcelOpenXML
or Excel in ReportServices.config file add Visible = "false"
November 13, 2013 at 8:59 am
Thanks K,
I hope the solution is :-
Use the Excel renderer (xls) by changing the value of Visible to true, in the following line in the RSReportServer.config file.
<Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering" Visible="true"/>
November 13, 2013 at 4:18 am
No I guess
November 13, 2013 at 3:44 am
Again the ReportURL can change. Need the report server name or machine name
October 1, 2013 at 11:06 pm
not report name but server name
October 1, 2013 at 11:58 am
Unfortunately, it has become a show stopper for me as the query fetches some ad-hoc report and the same is failing.
Can you let me know why exactly it hapenes...
April 1, 2013 at 8:03 am
If you are importing using DTS/Import Export wizard. you might want to Edit the data type and length of the source. Cause thats what might be causing the truncate.
January 17, 2013 at 12:53 am
Hi,
You can switch partitions if your idea allows this or TRANSFER the partition to other. PLease follow the following url for more details.
http://msdn.microsoft.com/en-us/library/ms142159.aspx
http://msdn.microsoft.com/en-us/library/ms191160(v=sql.105).aspx
January 17, 2013 at 12:44 am
Money can take upto 5 decimal. Whereas, if you need > 5 decimal places for a value go for decimal(n,m)
January 16, 2013 at 11:40 pm
Even excel wont allow that many columns .. are you sure you are talking abt coln and not rows ?
September 18, 2012 at 12:44 pm
Viewing 15 posts - 1 through 15 (of 85 total)