Viewing 15 posts - 46 through 60 (of 61 total)
no it didnt, we changed fields in the warehouse and were wondering what the impact will be on our cube and reports.
April 20, 2012 at 5:35 am
Thanks guys, solved the same issue for me.
March 23, 2012 at 2:11 am
also used the query in the report initially, till I worked on a team that used SPs, much easier.
March 12, 2012 at 3:12 am
HI Andy, its pulling from a stored proc, the Order by is in the sp.
February 22, 2012 at 7:55 am
Not sure if this will work or if its even viable.
Add a variable object. Populate it with a distinct on your 'body' field. Use a loop through to create...
February 13, 2012 at 1:24 am
What about using presidence constraints?
February 7, 2012 at 12:57 pm
chris corbin (5/30/2007)
Create a Data Flow Task (DFT)at the Control Flow Level of your package. Next, add a Flat File Connection Manager to your package by Right-Clicking in the Connection...
February 7, 2012 at 12:53 pm
thanks Paul. did something similar, but you solution is alot more elagent
CASE WHEN fpsm.InformationDateID = @CurrentMonthEndID
THEN sum(fpsm.NoOfUnits)
ELSE 0
END NoofUnits,
CASE WHEN fpsm.InformationDateID = @PreviousMonthEndID
THEN sum(fpsm.NoOfUnits)
ELSE 0 ...
February 2, 2012 at 2:34 am
If you going to use the set-up alot, make a template. saving the rdl file in %Program Files%Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\ProjectItems\ReportProject\
January 31, 2012 at 12:03 pm
Thanks Daniel, in the end I added a row_number column to the sql and used the filter property of the graph to show 10 columns at a time.
Also had to...
January 19, 2012 at 11:55 pm
Thanks guys. I tend towards using SSIS rather for those very resasons. Just thought there might be beter reasons to do it all in an SP
August 3, 2011 at 6:59 am
haha, yes, would be nice
thanks Dave
April 4, 2011 at 10:43 am
Thanks. did some more searching. It looks like if you can suppress this by MANUALLY ADDING in the source code: <rd:SuppressAutoUpdate>true</rd:SuppressAutoUpdate>
seems to be working properly now.
March 31, 2011 at 3:02 am
HI Dave, hope you still around.
what do you mean
'I standandize my parameter queries and rename them from the RS generated values (i.e. I prefix the datasets with "parm")....
March 31, 2011 at 2:28 am
Mods, please delete this post, i have moved it.
ta
March 30, 2011 at 2:26 am
Viewing 15 posts - 46 through 60 (of 61 total)