<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Designer XI 3 New Feature: Database Delegated Measures</title>
	<atom:link href="http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/</link>
	<description>...you are in a twisty maze of passageways, all different...</description>
	<lastBuildDate>Tue, 07 Feb 2012 17:17:49 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dave Rathbun</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-2038</link>
		<dc:creator>Dave Rathbun</dc:creator>
		<pubDate>Fri, 04 Nov 2011 14:31:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-2038</guid>
		<description>Hi, Prashant, your volume question is really beyond the scope of this blog post.</description>
		<content:encoded><![CDATA[<p>Hi, Prashant, your volume question is really beyond the scope of this blog post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-2037</link>
		<dc:creator>Prashant</dc:creator>
		<pubDate>Thu, 03 Nov 2011 04:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-2037</guid>
		<description>Hi Dave

i am waiting for your reply..

Thanks!!
Prsahant</description>
		<content:encoded><![CDATA[<p>Hi Dave</p>
<p>i am waiting for your reply..</p>
<p>Thanks!!<br />
Prsahant</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-2036</link>
		<dc:creator>Prashant</dc:creator>
		<pubDate>Tue, 01 Nov 2011 22:40:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-2036</guid>
		<description>Dave thanks a lot for the reply..You are the best!!

I am doing the calculation using Running sum and the report is slicing and dicing between month,year and daily perfectly. I calculated the begining balance using previous(ending_bal) function. The ending is calculated using using Running sum. So things went right. thanks again..

The problem now is that the report is taking too much time to fetch data due to use of report level variables. As the data volume is around 80K to 100K.

Please suggest me something in this regard. Let me know if I am not clear in explaining my problem.</description>
		<content:encoded><![CDATA[<p>Dave thanks a lot for the reply..You are the best!!</p>
<p>I am doing the calculation using Running sum and the report is slicing and dicing between month,year and daily perfectly. I calculated the begining balance using previous(ending_bal) function. The ending is calculated using using Running sum. So things went right. thanks again..</p>
<p>The problem now is that the report is taking too much time to fetch data due to use of report level variables. As the data volume is around 80K to 100K.</p>
<p>Please suggest me something in this regard. Let me know if I am not clear in explaining my problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Rathbun</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-2033</link>
		<dc:creator>Dave Rathbun</dc:creator>
		<pubDate>Sat, 29 Oct 2011 15:44:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-2033</guid>
		<description>The challenge with elements like this is that the obvious choice of min() and max() don&#039;t work, because the ending balance could - with the right set of transactions - be less than the starting balance. It&#039;s for this reason that I would suggest calculating these values using a running sum function on the report instead.</description>
		<content:encoded><![CDATA[<p>The challenge with elements like this is that the obvious choice of min() and max() don&#8217;t work, because the ending balance could &#8211; with the right set of transactions &#8211; be less than the starting balance. It&#8217;s for this reason that I would suggest calculating these values using a running sum function on the report instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-2031</link>
		<dc:creator>Prashant</dc:creator>
		<pubDate>Sat, 29 Oct 2011 05:58:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-2031</guid>
		<description>Hi Dave
I have a measure object called begining and ending balance which i want to aggregate based on daily,month,quarter,  and year. When I want to see monthly data and I remove the date dimension..It rolls up the individual records giving me the wrong result. For Example my daily transaction data is like..
User Date             Year   month  BegBal  EndBal
I1  11-May-2011 10PM  2011    5      0        100 
I1  11-May-2011 11PM  2011    5      100      200
I1  11-May-2011 12PM  2011    5      200      250

This is correct when I see at lowest daily level data...But if I remove the date column..then i want month begining and ending balance which should be 0 and 250 respectively...however the report shows 300 and 550 that is it sums up..

Please help!!Thanks a lot in advance</description>
		<content:encoded><![CDATA[<p>Hi Dave<br />
I have a measure object called begining and ending balance which i want to aggregate based on daily,month,quarter,  and year. When I want to see monthly data and I remove the date dimension..It rolls up the individual records giving me the wrong result. For Example my daily transaction data is like..<br />
User Date             Year   month  BegBal  EndBal<br />
I1  11-May-2011 10PM  2011    5      0        100<br />
I1  11-May-2011 11PM  2011    5      100      200<br />
I1  11-May-2011 12PM  2011    5      200      250</p>
<p>This is correct when I see at lowest daily level data&#8230;But if I remove the date column..then i want month begining and ending balance which should be 0 and 250 respectively&#8230;however the report shows 300 and 550 that is it sums up..</p>
<p>Please help!!Thanks a lot in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Rathbun</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-1922</link>
		<dc:creator>Dave Rathbun</dc:creator>
		<pubDate>Wed, 21 Sep 2011 14:59:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-1922</guid>
		<description>Database delegated measures are designed for ratio calculations (either current year to prior year, or averages, or percentages, or...). Whether you use database delegated measures or local variables really depends on how quick your reports refresh.</description>
		<content:encoded><![CDATA[<p>Database delegated measures are designed for ratio calculations (either current year to prior year, or averages, or percentages, or&#8230;). Whether you use database delegated measures or local variables really depends on how quick your reports refresh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RSJ</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-1887</link>
		<dc:creator>RSJ</dc:creator>
		<pubDate>Tue, 30 Aug 2011 12:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-1887</guid>
		<description>Thank You!</description>
		<content:encoded><![CDATA[<p>Thank You!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cesar Rodriguez</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-1886</link>
		<dc:creator>Cesar Rodriguez</dc:creator>
		<pubDate>Fri, 26 Aug 2011 20:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-1886</guid>
		<description>Hi Dave, I have an object with a division formula and aggregate function sum. With a minimum aggregation level it work, but when replace with other superior level, the aggregate function sum work, as a normal work and the result needs to be a division.

I proposed to my user, use a database delegation, with all refresh that it need, or use a local variable in each report.

Do you know if exist a third option to this behavior? 

Best Regards</description>
		<content:encoded><![CDATA[<p>Hi Dave, I have an object with a division formula and aggregate function sum. With a minimum aggregation level it work, but when replace with other superior level, the aggregate function sum work, as a normal work and the result needs to be a division.</p>
<p>I proposed to my user, use a database delegation, with all refresh that it need, or use a local variable in each report.</p>
<p>Do you know if exist a third option to this behavior? </p>
<p>Best Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy J</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-1681</link>
		<dc:creator>Andy J</dc:creator>
		<pubDate>Thu, 28 Apr 2011 08:16:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-1681</guid>
		<description>It can also be used for sums - I had an example with a master-detail table layout, count distinct on master but if an item was included in query from the detail table then it counted all distinct rows ie at detail level even though the detail item was not included in the report. The query includes all rows as I believe this is standard Webi behaviour. As soon as the measure was database delegated the problem was resolved and the query only counted the distinct rows used in the report</description>
		<content:encoded><![CDATA[<p>It can also be used for sums &#8211; I had an example with a master-detail table layout, count distinct on master but if an item was included in query from the detail table then it counted all distinct rows ie at detail level even though the detail item was not included in the report. The query includes all rows as I believe this is standard Webi behaviour. As soon as the measure was database delegated the problem was resolved and the query only counted the distinct rows used in the report</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandy</title>
		<link>http://www.dagira.com/2008/11/10/designer-xi-3-new-feature-database-delegated-measures/comment-page-1/#comment-1600</link>
		<dc:creator>sandy</dc:creator>
		<pubDate>Wed, 23 Feb 2011 18:53:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagira.com/?p=128#comment-1600</guid>
		<description>Hi Dave 
I have a question regarding percentages and averages. We have a view develoepd for all the calculations. when i include these objects in the universe should i just change the projection to database delegated with out having to define the object as 
avg(column_name_from_view) in the object definition?</description>
		<content:encoded><![CDATA[<p>Hi Dave<br />
I have a question regarding percentages and averages. We have a view develoepd for all the calculations. when i include these objects in the universe should i just change the projection to database delegated with out having to define the object as<br />
avg(column_name_from_view) in the object definition?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

