<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Oracle Read - Oracle Blogs Aggregator</title>
	
	<link>http://oracle.nativeread.com</link>
	<description>DBA, Performance, Business Intelligence, Applications, Middleware &amp; SOA, Security, News</description>
	<pubDate>Mon, 02 Nov 2009 09:32:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/oracleread" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>OWB 11gR2 &amp;ndash; Template mapping variables?</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/3Vu7HqJFBHY/</link>
		<comments>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-template-mapping-variables/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:29 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-template-mapping-variables/</guid>
		<description><![CDATA[Here we&#8217;ll see how you can add runtime variables and reference them from code template mappings in OWB 11gR2; variables can be used in many places including expressions, filters, joiners and execution unit code template assignments. This lets you control how some aspects of the mapping will behave at execution time. Traditional database resident mappings support mapping input parameters, in 11gR2 the template mappings can be extended in many ways and this is one illustration.
This is essentially a small extension where a table holding the variable names and values is defined, a data source in the agent to identify where <p style="font-size:11px">...click on the title to read the full article...</p>]]></description>
			<content:encoded><![CDATA[<p>Here we&#8217;ll see how you can add runtime variables and reference them from code template mappings in OWB 11gR2; variables can be used in many places including expressions, filters, joiners and execution unit code template assignments. This lets you control how some aspects of the mapping will behave at execution time. Traditional database resident mappings support mapping input parameters, in 11gR2 the template mappings can be extended in many ways and this is one illustration.</p>
<p>This is essentially a small extension where a table holding the variable names and values is defined, a data source in the agent to identify where the variable table is defined and there is a JAR file with the support for setting and getting variable values.</p>
<p><strong>Setup</strong></p>
<p>There are a few steps to configure OWB to support this (the zip is <a href="http://blogs.oracle.com/warehousebuilder/variables.zippy">here</a>) using a small custom extension I have created. Firstly copy the owbutils.jar file to the owb/lib/ext directory of the CCA host, then stop and start the agent. The table OWB_CT_VARIABLES should be defined in a schema of the user&#8217;s choice, there is a SQL script supplied for Oracle named variables_oracle.sql in the zip, execute this in a schema of your choice.</p>
<p>The table OWB_CT_VARIABLES is defined with the following columns to represent the variable name and the variable value:</p>
<ul>
<li>variable_name </li>
<li>variable_value </li>
</ul>
<p>So to define a new variable insert a name and value into this table, for example the variable VAR_REGEXP is added below with the vale orderitems.*gz;</p>
<blockquote><p>insert into owb_ct_variables values (&#8217;VAR_REGEXP&#8217;, &#8216;orderitems.*gz&#8217;);</p>
<p>commit;</p>
</blockquote>
<p>You can refer to variables inside expressions in OWB, for example within filter, join and expression operators, they can also refer to variables from within code template options in a mapping.</p>
<p><strong>Configuring the Agent</strong></p>
<p>Finally create a data source named <strong>jdbc/OWBCTVariablesDS</strong> in the Control Center Agent (CCA). The data source points to the schema containing the table used for storing the variables. Below is an example of a data-sources.xml file (in owb/jrt/config) that has a data sources added.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2Runtimevariables_135E6/owb_data_source.jpg"><img title="owb_data_source" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="owb_data_source" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2Runtimevariables_135E6/owb_data_source_thumb.jpg" width="402" border="0" /></a> </p>
<p>The data source named jdbc/OWBCTVariablesDS is used by the variable API that provides operations on variables to get and set variable values (the API is available when the jar file is copied to owb/lib/ext) - there are also increment/decrement operations for integers.<b></b></p>
<p><strong>Illustrations</strong></p>
<p>To illustrate lets look at an example that loads sets of files into a target table. The file list is dynamic and needs to be a regular expression that can be supplied to load all order items files with the gz (compression) suffix in one run. Another example will load all records from files with a transaction date greater than some date we define at runtime. The table OWB_CT_VARIABLES has the variable names and values;<br />
<table cellpadding="0" border="1">
<tbody>
<tr>
<td>
<p><b>variable_name</b></p>
</td>
<td>
<p><b>variable_value</b></p>
</td>
</tr>
<tr>
<td>
<p>VAR_REGEXP</p>
</td>
<td>
<p>orderitems.*gz</p>
</td>
</tr>
<tr>
<td>
<p>VAR_TXNDATE</p>
</td>
<td>
<p>5-MAY-2009</p>
</td>
</tr>
</tbody>
</table>
<p>Taking the mapping from the <a href="http://blogs.oracle.com/warehousebuilder/2009/10/owb_11gr2_bulk_file_loading_-_more_faster_easier.html">post on bulk loading files</a>, if we look at code template options we can also use variables here too, so we can solve our challenge by getting the variable value for the filename regular expression to use, the example will use the VAR_REGEXP variable name to obtain the expression for file names at runtime.</p>
<p>&#160;<a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2Runtimevariables_135E6/owb_file_reg_exp_variables_2.jpg"><img title="owb_file_reg_exp_variables" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="463" alt="owb_file_reg_exp_variables" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2Runtimevariables_135E6/owb_file_reg_exp_variables_thumb.jpg" width="644" border="0" /></a>     <br />This lets us deploy the mapping once and execute the mapping with whatever values we desire for the regular expression since the value is pulled at runtime.</p>
<p><strong>Another illustration using a filter</strong></p>
<p>In this example we define a filter to get all records after the date defined in the variable, we define the condition below, using the API (ctvariable.get) passing the variable name;    <br /><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2Runtimevariables_135E6/clip_image002%5B4%5D.jpg"><img title="clip_image002[4]" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="387" alt="clip_image002[4]" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2Runtimevariables_135E6/clip_image002%5B4%5D_thumb.jpg" width="468" border="0" /></a>     <br />Note the \u0022 character which will give us the required quotes through the code generation. Depending on where the expression is defined will change how the code is written, inside a mapping expression the Unicode character is required, in the mapping template options use the quotation mark. </p>
<p><strong>Summary</strong></p>
<p>Here we have seen how you can add runtime variables and reference them from code template mappings in OWB 11gR2; the variables can be used in many places including expressions, filters, joiners and execution unit code template assignments letting you control aspects of the execution at runtime.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/0GD0aC9F2qmnqjlE7a54dgI2qco/0/da"><img src="http://feedads.g.doubleclick.net/~a/0GD0aC9F2qmnqjlE7a54dgI2qco/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0GD0aC9F2qmnqjlE7a54dgI2qco/1/da"><img src="http://feedads.g.doubleclick.net/~a/0GD0aC9F2qmnqjlE7a54dgI2qco/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=3Vu7HqJFBHY:aouFtj4b0ws:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=3Vu7HqJFBHY:aouFtj4b0ws:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=3Vu7HqJFBHY:aouFtj4b0ws:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=3Vu7HqJFBHY:aouFtj4b0ws:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/3Vu7HqJFBHY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-template-mapping-variables/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-template-mapping-variables/</feedburner:origLink></item>
		<item>
		<title>OWB 11gR2 &amp;ndash; Cube Organized Materialized Views</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/2imqabzqNkc/</link>
		<comments>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-cube-organized-materialized-views/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:28 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-cube-organized-materialized-views/</guid>
		<description><![CDATA[Here we will look at building cube organized materialized views for a relational fact table. The illustration uses the Oracle OLAP 11g Sample Schema and rather than the cube organized materialized views being created via the script in the demo, they will be designed and generated from OWB. The cubes and dimensions designed in OWB can serve multiple purposes;

physical data warehouse tables may be generated 
dimensionally aware ETL operators for maintaining data 
cube organized materialized views generated for summary management and performance 
derive the OBIEE layers - a great metadata integration scenario. 

OWB 11gR2 supports the design of 11g form <p style="font-size:11px">...click on the title to read the full article...</p>]]></description>
			<content:encoded><![CDATA[<p>Here we will look at building cube organized materialized views for a relational fact table. The illustration uses the Oracle OLAP 11g Sample Schema and rather than the cube organized materialized views being created via the script in the demo, they will be designed and generated from OWB. The cubes and dimensions designed in OWB can serve multiple purposes;</p>
<ul>
<li>physical data warehouse tables may be generated </li>
<li>dimensionally aware ETL operators for maintaining data </li>
<li>cube organized materialized views generated for summary management and performance </li>
<li>derive the OBIEE layers - a great metadata integration scenario. </li>
</ul>
<p>OWB 11gR2 supports the design of 11g form Analytic Workspaces (as well as 10g form AWs), multidimensional designs can be deployed as 11g cubes PLUS the relational fact table can be summarized using cube organized materialized views.</p>
<p>Firstly let&#8217;s download the OLAP training example <a href="http://www.oracle.com/technology/products/bi/olap/11g/samples/schemas/readme.html">here</a>. Complete the &#8216;Installing the base OLAPTRAIN schema&#8217; step, do not install the analytic workspace (I did this on Linux). We must then import the base table metadata into OWB, we will build dimensions and cubes on top of these tables next. There are further performance illustrations based on these examples that we will illustrate leverage on, the Oracle database viewlet can be found on OTN at <a href="http://www.oracle.com/technology/products/bi/olap/11g/demos/olap_cube_mvs_demo.html">Improving Query Performance with Oracle OLAP Cube MVs</a>.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap1_2.jpg"><img title="owb_olap1" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="owb_olap1" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap1_thumb.jpg" width="262" border="0" /></a> </p>
<p>Now execute the OWB OMB script (download <a href="http://blogs.oracle.com/warehousebuilder/owb_olaptrain.tcl">here</a>) to create the cubes and dimensions which are bound to these tables. The script creates the dimensional model.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap2_2.jpg"><img title="owb_olap2" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="111" alt="owb_olap2" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap2_thumb.jpg" width="249" border="0" /></a> </p>
<p>This will define the dimensions and cubes and setup the storage type which will inform OWB to generate cube organized materialized views.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap3_2.jpg"><img title="owb_olap3" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="243" alt="owb_olap3" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap3_thumb.jpg" width="252" border="0" /></a> </p>
<p>For example the SALES_CUBE object is bound to the underlying fact table SALES_FACT below. The dimensional model defined is skeletal, so the dimensions primarily just have their hierarchies defined for demo purposes (ie. not all dimension attributes are defined).</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap4_2.jpg"><img title="owb_olap4" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="210" alt="owb_olap4" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap4_thumb.jpg" width="404" border="0" /></a> </p>
<p>We can see the cube and dimensions are all defined to be stored as relational using cube organized materialized views, they have the &#8216;ROLAP: with Cube MVs&#8217; option enabled. This lets the user select information from both the relational storage options (such as create bitmap indexes) and from the multidimensional storage options such as the name for the analytic workspace.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap5_2.jpg"><img title="owb_olap5" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="owb_olap5" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap5_thumb.jpg" width="242" border="0" /></a> </p>
<p>As it stands if we deployed the summary in the AW would have the same grain as the base fact table, which is much more than we need for summary management. To illustrate, if the code is generated for the cube we can see the join from the SALES_FACT table to the TIMES table is based on the DAY_KEY and also the expression loaded into the cube is DAY_KEY (see the Expression and JoinCondition properties below). Remember the DAY level is our lowest level for the time dimension in our cube.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap6_2.jpg"><img title="owb_olap6" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="owb_olap6" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap6_thumb.jpg" width="343" border="0" /></a> </p>
<p>So what about storing summaries at the non-leaf level&#8230;? Read on&#8230;</p>
<p><strong>Summary levels in cube organized materialized view</strong></p>
<p>If we want to summarize at a non-leaf level in the cube, then we must change the dependent dimensions&#8217; summary load level. For example we can see just now in the TIMES_DIM dimension the summary load level is not set (so the leaf is used).</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap7_2.jpg"><img title="owb_olap7" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="146" alt="owb_olap7" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap7_thumb.jpg" width="404" border="0" /></a> </p>
<p>We can set the MONTH level for the STANDARD hierarchy as the summary level, the base facts are still stored in the relational fact table at DAY, but the summary is loaded into the cube organized materialized view for MONTH.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap8_2.jpg"><img title="owb_olap8" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="153" alt="owb_olap8" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap8_thumb.jpg" width="404" border="0" /></a> </p>
<p>Now if we generate the cube we will see the join condition is still the same but the expression for TIMES is now MONTH_ID (see the Expression=&#8221;TIMES.MONTH_ID&#8221; name value pair below).</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap9_2.jpg"><img title="owb_olap9" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="owb_olap9" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap9_thumb.jpg" width="350" border="0" /></a> </p>
<p>Generating the dimensions generates multiple scripts; one script is the relational DDL which goes to the DAY level, and the other script is to build the dimension definitions in the AW which have the summary level in the cube organized view as MONTH.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap10_2.jpg"><img title="owb_olap10" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="160" alt="owb_olap10" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap10_thumb.jpg" width="404" border="0" /></a> </p>
<p>What&#8217;s the point of storing the entire fact table in the MV again? Silly right? Just as well we can define the summary level that is loaded in the cube organized materialized view. We can for example change the PRODUCT_DIM dimension to have a summary level of SUBTYPE rather than the base of ITEM. Note this is done on the dimension, not on the cube.</p>
<p><strong>So why will this generate a materialized view&#8230;.?</strong></p>
<p>There are configuration properties that tell the OWB code generator to enable the MV creation, see the figure below initially the script created the Enable Query Rewrite with value DISABLE, we must change this to ENABLE.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap11_2.jpg"><img title="owb_olap11" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="158" alt="owb_olap11" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap11_thumb.jpg" width="246" border="0" /></a>&#160;&#160;&#160; ==&gt;Enable==<strong>&gt;</strong>&#160;<a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap12_2.jpg"><img title="owb_olap12" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="155" alt="owb_olap12" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_olap12_thumb.jpg" width="269" border="0" /></a>&#160;&#160;&#160; </p>
<p>Once this has been changed then when we generate and deploy all the dimensions and cube an AW is created with a cube setup for rewrite using cube organized materialized views.</p>
<p><strong>Show me the MVs&#8230;.</strong></p>
<p>After the dimensions and cubes have been deployed, you can inspect the Oracle dictionary to see the materialized views created, and even open up AWM and see the cubes and dimensions created by OWB to represent the cube organized materialized view.</p>
<p>Here we see the materialized views created;</p>
<p><em>SQL&gt; select mview_name from user_mviews; </em></p>
<p><em>MVIEW_NAME      <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;       <br />CB$SALES_CUBE       <br />CB$CHANNELS_DIM_STANDARD       <br />CB$CUSTOMERS_DIM_STANDARD       <br />CB$PRODUCTS_DIM_STANDARD       <br />CB$TIMES_DIM_STANDARD</em></p>
<p>In AWM we can see the TIMES_DIM dimension for example does not have the DAY level loaded, the summary in the AW starts at the MONTH level, base fact data is stored in the relational fact table, and is not replicated in the AW.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_cubemv_awm1_2.jpg"><img title="owb_cubemv_awm1" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="221" alt="owb_cubemv_awm1" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_cubemv_awm1_thumb.jpg" width="404" border="0" /></a> </p>
<p>The cube is defined with all of the desired materialized view options enabled.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_cubemv_awm2_2.jpg"><img title="owb_cubemv_awm2" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="owb_cubemv_awm2" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2CubeOrganizedMaterializedViews_E162/owb_cubemv_awm2_thumb.jpg" width="366" border="0" /></a> </p>
<p>&#160;</p>
<p><strong>Refreshing the materialized views&#8230;</strong></p>
<p>Above we configured the materialized views to refresh on demand, with this options we have to manually execute the refresh of the materialized views. The views can also be refreshed on commit (when the data is inserted into the fact or dimension table, the summary is automatically refreshed) or periodically using a simple schedule (using start date and next date expressions).</p>
<p>To manually refresh, detach from the AW in AWM. Now let&#8217;s manually refresh the materialized views from SQLPlus (just like regular database materialized views you can refresh on demand, on commit, on a scheduler etc.). </p>
<ul>
<li>execute DBMS_SNAPSHOT.REFRESH(&#8217;CB$CHANNELS_DIM_STANDARD&#8217;,'C&#8217;) </li>
<li>execute DBMS_SNAPSHOT.REFRESH(&#8217;CB$CUSTOMERS_DIM_STANDARD&#8217;,'C&#8217;) </li>
<li>execute DBMS_SNAPSHOT.REFRESH(&#8217;CB$PRODUCTS_DIM_STANDARD&#8217;,'C&#8217;) </li>
<li>execute DBMS_SNAPSHOT.REFRESH(&#8217;CB$TIMES_DIM_STANDARD&#8217;,'C&#8217;) </li>
<li>execute DBMS_SNAPSHOT.REFRESH(&#8217;CB$SALES_CUBE&#8217;,'C&#8217;) </li>
</ul>
<p>These steps could be included in a process flow for example or other OWB objects (transformations, pre mapping transformation and so on) and executed.</p>
<p><strong>Summary</strong></p>
<p>In summary we have see how cube organized materialized views can be generated from a relational data warehouse design in OWB 11gR2. The rich metadata definitions captured in the OWB designer provide many benefits from data warehouse design to a rich set of operators built specifically for loading warehouses, to summary management capabilities and business reporting integration. In subsequent postings we&#8217;ll see the query plans and integration with OBIEE.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/i6R0GYFcYv2VTsJzuPeAVq--QoM/0/da"><img src="http://feedads.g.doubleclick.net/~a/i6R0GYFcYv2VTsJzuPeAVq--QoM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/i6R0GYFcYv2VTsJzuPeAVq--QoM/1/da"><img src="http://feedads.g.doubleclick.net/~a/i6R0GYFcYv2VTsJzuPeAVq--QoM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=2imqabzqNkc:CZi1bOzCeWA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=2imqabzqNkc:CZi1bOzCeWA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=2imqabzqNkc:CZi1bOzCeWA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=2imqabzqNkc:CZi1bOzCeWA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/2imqabzqNkc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-cube-organized-materialized-views/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-cube-organized-materialized-views/</feedburner:origLink></item>
		<item>
		<title>Yesterday: Successful Unconference Event &amp;ndash; Today: OWB @ The W</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/fWHCZpmJ568/</link>
		<comments>http://oracle.nativeread.com/2009/11/yesterday-successful-unconference-event-ndash-today-owb-the-w/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:28 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/yesterday-successful-unconference-event-ndash-today-owb-the-w/</guid>
		<description><![CDATA[So yesterday’s Unconference event at OOW was a great success, The Overlook was mostly full, the technology mostly cooperated, and attendees mostly chose to stick with us till the end rather than running for the keynote  
Mark Rittman presented his experiences with the OBI EE integration in OWB 11.2 and the rest of the product, and David Allan described some of the more advanced possibilities of OWB 11.2 Hybrid Mappings.&#160; The audience was mostly current OWB users and partners, some of whom had also worked with 11.2 and had their own positive feedback.
This afternoon’s customer event (OWB @ the <p style="font-size:11px">...click on the title to read the full article...</p>]]></description>
			<content:encoded><![CDATA[<p>So yesterday’s Unconference event at OOW was a great success, The Overlook was mostly full, the technology mostly cooperated, and attendees mostly chose to stick with us till the end rather than running for the keynote <img src='http://oracle.nativeread.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Mark Rittman presented his experiences with the OBI EE integration in OWB 11.2 and the rest of the product, and David Allan described some of the more advanced possibilities of OWB 11.2 Hybrid Mappings.&#160; The audience was mostly current OWB users and partners, some of whom had also worked with 11.2 and had their own positive feedback.</p>
<p>This afternoon’s customer event (<a href="http://blogs.oracle.com/warehousebuilder/2009/09/owb_the_w_hotel_warehouse_builder_goes_hybrid.html" target="_blank"><strong>OWB @ the W Hotel: Warehouse Builder Goes Hybrid</strong></a><strong>,</strong> 2-4PM, W Hotel, Workroom 2) should be an even bigger draw, with more speakers, more interactivity, and more time to delve into detail. Talk with a panel of OWB gurus (Oracle staff and independent experts) about the latest release, OWB 11.2.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/ENhY0CxyzEeDoIwqaogLj5FaO-A/0/da"><img src="http://feedads.g.doubleclick.net/~a/ENhY0CxyzEeDoIwqaogLj5FaO-A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ENhY0CxyzEeDoIwqaogLj5FaO-A/1/da"><img src="http://feedads.g.doubleclick.net/~a/ENhY0CxyzEeDoIwqaogLj5FaO-A/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=fWHCZpmJ568:t5d0BYNCOas:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=fWHCZpmJ568:t5d0BYNCOas:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=fWHCZpmJ568:t5d0BYNCOas:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=fWHCZpmJ568:t5d0BYNCOas:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/fWHCZpmJ568" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/yesterday-successful-unconference-event-ndash-today-owb-the-w/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/yesterday-successful-unconference-event-ndash-today-owb-the-w/</feedburner:origLink></item>
		<item>
		<title>OWB 11gR2 &amp;ndash; Bulk File Loading - more, faster, easier</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/09KImNysbEM/</link>
		<comments>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-bulk-file-loading-more-faster-easier/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:27 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-bulk-file-loading-more-faster-easier/</guid>
		<description><![CDATA[A common problem in warehouses is to load a number of similar files into the database, often the filenames are dynamic so the names cannot be hard-wired, if they are known its easy enough to configure the external table or SQL*Loader mapping with those names. What to do in the dynamic case? Well, here we will see one approach using code templates, we can create a design for what we want and apply it in a code template. We can load more files, faster and easier. This is a great example of customizations of the power of customizations where new <p style="font-size:11px">...click on the title to read the full article...</p>]]></description>
			<content:encoded><![CDATA[<p>A common problem in warehouses is to load a number of similar files into the database, often the filenames are dynamic so the names cannot be hard-wired, if they are known its easy enough to configure the external table or SQL*Loader mapping with those names. What to do in the dynamic case? Well, here we will see one approach using code templates, we can create a design for what we want and apply it in a code template. We can load more files, faster and easier. This is a great example of customizations of the power of customizations where new templates can be created to solve real world problems.</p>
<p>There are 2 requirements we will specify for the file loading mechanics - the first is to allow a regular expression to be supplied in order to load all files that match a pattern and the second is to support compressed file loading.</p>
<p><strong>The Starting Point</strong></p>
<p>Where to start? The File to External Table code template is a fair starting point, this creates an external table for staging a single file from the file-system via an external table in the Oracle database. Currently the template stages a single file with some small changes we can enhance this to stage many files and also incorporate the preprocessor to handle compressed data.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_bulk_files_2.gif"><img title="owb_bulk_files" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="209" alt="owb_bulk_files" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_bulk_files_thumb.gif" width="644" border="0" /></a> </p>
<p>Essentially all we have to do is define some options on a code template so that a regular expression could be supplied for the desired file names, we will change the template so that it retrieves all filenames that matched the regular expression. An additional change will be to support the preprocessor directive to load directly from compressed files (for example). This will provide better performance of moving the file over the network - often very large files are compressed, this significantly reduces the time to transfer. Rather than having to uncompress this compressed file it can be streamed directly into the database. The Oracle database&#8217;s external table has a PREPROCESSOR directive to fulfill this exact requirement. Including this as an option in the code template will add significant capabilities.</p>
<p><strong>The Template</strong></p>
<p>Rather than editing the File to Oracle external table seeded template we will use this as a basis. Using the OWB OMB scripting language, we will copy-paste the file to external table code template and apply the changes. Using this approach we can take updates to this base and apply the changes using the script (download <a href="http://blogs.oracle.com/warehousebuilder/lct_files_to_oracle_exttab.tcl">here</a>). Below we will look at excerpts of it. Firstly using OMB we can copy paste existing templates to customize.</p>
<blockquote><p>OMBCOPY CT &#8216;/PUBLIC_PROJECT/BUILT_IN_CT/LCT_FILE_TO_ORACLE_EXTER_TABLE&#8217; TO &#8216;LCT_FILES_TO_ORACLE_EXT_TABLE&#8217;</p>
</blockquote>
<p>Then add new options to the code template to allow the user to define which preprocessor to use and an regular expression for the file (below we add FILE_REGEXP, EXT_EXE_DIR and EXT_EXE options to the template).</p>
<blockquote><p>FILE_REGEXP - Process all files in the directory matching the regular expression.        <br />EXT_EXE_DIR - SQL directory where the preprocessor program resides. This must exist prior to executing the mapping.         <br />EXT_EXE - Name of the preprocessor script. If this value is set the PREPROCESSOR directive will be used in the external table.</p>
</blockquote>
<p>When the template is complete there are changes to 2 parts of the create external table statement, the first change is to use the PREPROCESSOR directive if the EXT_EXE options is defined, this variable defines the name of the preprocessor;</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_files_mapping0_2.jpg"><img title="owb_files_mapping0" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="378" alt="owb_files_mapping0" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_files_mapping0_thumb.jpg" width="644" border="0" /></a> </p>
<p>The second change above checks for the existence of the regular expression, if no regular expression is defined it uses the file defined in the mapping, if a regular expression is defined then some code is executed to get all the file names that match the regular expression and include those in the external table definition.</p>
<p><strong>The Mapping</strong></p>
<p>The sample mapping below stages the ORDERS and ORDERITEMS data files using the Files to External Table code template, the stage tables are joined with some additional tables and then loaded into the cube/fact, this example illustrates using code templates for staging data in different ways and data warehouse operators (such as cube) integrated using the hybrid mapping design.</p>
<p>The mapping uses a regular expression orderit.*gz to get all COMPRESSED (gzipped) files in the directory, these will be included in the external table. The file names in our example are:</p>
<ul>
<li>orderitems_uk.csv.gz </li>
<li>orderitems_us.csv.gz </li>
</ul>
<p>Should we add new data files into this directory that match this pattern we could just rerun the mapping to pick them up! We would not have to change anything, simply copy the compressed file into the directory and we can dynamically pick up the data.</p>
<p>The preprocessor program gzunzipdb is a script defined in the SQL directory referenced by EXEC_DIR, and the script calls</p>
<ul>
<li>/bin/gunzip -c -d $* </li>
</ul>
<p>The Oracle external table preprocessor feature takes the standard output of the preprocessor and pumps the data right through the external table. For details of the preprocessor directive see the article &#8216;<a href="http://www.oracle.com/technology/products/database/utilities/pdf/xtables11g2009_preproc_0905.pdf">Using the Preprocessor Feature with External Tables in Oracle Database 11g&#8217;</a> on OTN.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_files_mapping2_2.jpg"><img title="owb_files_mapping2" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="428" alt="owb_files_mapping2" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_files_mapping2_thumb.jpg" width="644" border="0" /></a> </p>
<p>When the mapping is executed we can see the how these properties are applied in the template;</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_files_mapping3_2.jpg"><img title="owb_files_mapping3" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="434" alt="owb_files_mapping3" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_files_mapping3_thumb.jpg" width="644" border="0" /></a> </p>
<p>&#160;</p>
<p>If we then look at the actual table definition in SQLDeveloper for example we can see the files are defined in the LOCATION clause and the preprocessor is also included.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_files_mapping4_2.jpg"><img title="owb_files_mapping4" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="484" alt="owb_files_mapping4" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/9e31fc2dc492_E72D/owb_files_mapping4_thumb.jpg" width="407" border="0" /></a> </p>
<p>What we have seen here is a way in which a new code template can be designed, and where the logical mapping design has remained the same. When the template is applied to the mapping we can define various characteristics that let the same map design move <u>more</u> data, <u>faster</u> and <u>easier</u> than before;</p>
<ul>
<li>there is no custom coding, </li>
<li>file data can be transferred compressed over the network to the data warehouse, </li>
<li>it is then uncompressed without landing the data on the file system and piped directly through the external table </li>
</ul>
<p>and best of all, the mapping design remains the same. In subsequent postings I&#8217;ll show how you add yet another level of dynamic capabilities by providing the regular expression at runtime.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/I7w2DCJ18ObSDmdd-9wQ0v7CtPk/0/da"><img src="http://feedads.g.doubleclick.net/~a/I7w2DCJ18ObSDmdd-9wQ0v7CtPk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/I7w2DCJ18ObSDmdd-9wQ0v7CtPk/1/da"><img src="http://feedads.g.doubleclick.net/~a/I7w2DCJ18ObSDmdd-9wQ0v7CtPk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=09KImNysbEM:r1abc06mqNU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=09KImNysbEM:r1abc06mqNU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=09KImNysbEM:r1abc06mqNU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=09KImNysbEM:r1abc06mqNU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/09KImNysbEM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-bulk-file-loading-more-faster-easier/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-bulk-file-loading-more-faster-easier/</feedburner:origLink></item>
		<item>
		<title>Reminder: Open World Unconference Session on OWB 11.2</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/MAFuqp-m7FI/</link>
		<comments>http://oracle.nativeread.com/2009/11/reminder-open-world-unconference-session-on-owb-112/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:27 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/reminder-open-world-unconference-session-on-owb-112/</guid>
		<description><![CDATA[As already announced, the OpenWorld Unconference session on Oracle Warehouse Builder 11.2 is being held 14 October 2009, Moscone West, Third Floor, Overlook 2, 2-3PM. 
For the convenience of attendees, here’s a floorplan.&#160; Overlook 2 is right across from room 3018.
Mark Rittman will be presenting on OBI-EE integration and his experiences with OWB 11.2, I’ll be presenting on OWB Code Template Mappings that bring ODI Knowledge Module technology to OWB, and David Allan will be showing off some of the more advanced applications of code templates. 
Hope to see you there. 
]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/ReminderOpenWorldUnconferenceSessionon.2_14CD5/mosconewest-plan_2.jpg" target="_blank"><img title="mosconewest-plan" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 0px 0px 20px; border-right-width: 0px" height="244" alt="mosconewest-plan" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/ReminderOpenWorldUnconferenceSessionon.2_14CD5/mosconewest-plan_thumb.jpg" width="203" align="right" border="0" /></a>As already announced, the OpenWorld Unconference session on Oracle Warehouse Builder 11.2 is being held 14 October 2009, Moscone West, Third Floor, Overlook 2, 2-3PM. </p>
<p>For the convenience of attendees, here’s a floorplan.&#160; Overlook 2 is right across from room 3018.</p>
<p>Mark Rittman will be presenting on OBI-EE integration and his experiences with OWB 11.2, I’ll be presenting on OWB Code Template Mappings that bring ODI Knowledge Module technology to OWB, and David Allan will be showing off some of the more advanced applications of code templates. </p>
<p>Hope to see you there. </p>

<p><a href="http://feedads.g.doubleclick.net/~a/rMmvb5RD4iy7VsAdpo6PAySLAOs/0/da"><img src="http://feedads.g.doubleclick.net/~a/rMmvb5RD4iy7VsAdpo6PAySLAOs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/rMmvb5RD4iy7VsAdpo6PAySLAOs/1/da"><img src="http://feedads.g.doubleclick.net/~a/rMmvb5RD4iy7VsAdpo6PAySLAOs/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=MAFuqp-m7FI:mTyju2m9H8U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=MAFuqp-m7FI:mTyju2m9H8U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=MAFuqp-m7FI:mTyju2m9H8U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=MAFuqp-m7FI:mTyju2m9H8U:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/MAFuqp-m7FI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/reminder-open-world-unconference-session-on-owb-112/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/reminder-open-world-unconference-session-on-owb-112/</feedburner:origLink></item>
		<item>
		<title>Upcoming OWB Events</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/XmOSAWDYHl0/</link>
		<comments>http://oracle.nativeread.com/2009/11/upcoming-owb-events/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:26 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/upcoming-owb-events/</guid>
		<description><![CDATA[
Events at Oracle Open World 2009    The following events require an Open World pass for attendance:    &#160;
OWB @ Oracle Open World DEMOgrounds    Mon, Tues, &#38; Wed Oct 12,13,&#38; 14 2009     Moscone West, Pods W-093 &#38; W-094 See map     Come chat with OWB developers and product management about our latest release.
An ETL Framework Using Oracle Warehouse Builder    Monday October 12 2009    13:00 -14:00 in Moscone South Room 270    Speaker: Ian Abramson from Thoughtcorp, Inc  <p style="font-size:11px">...click on the title to read the full article...</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/UpcomingOWBEvents_F298/di-pods-2009_2.jpg"><img title="di-pods-2009" style="border-right: 0px; border-top: 0px; display: inline; margin-left: 0px; border-left: 0px; margin-right: 0px; border-bottom: 0px" height="457" alt="di-pods-2009" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/UpcomingOWBEvents_F298/di-pods-2009_thumb.jpg" width="526" align="right" border="0" /></a>
<p><big><strong>Events at Oracle Open World 2009</strong></big>    <br />The following events require an Open World pass for attendance:    <br />&#160;</p>
<p><strong>OWB @ Oracle Open World DEMOgrounds</strong>    <br />Mon, Tues, &amp; Wed Oct 12,13,&amp; 14 2009     <br />Moscone West, Pods W-093 &amp; W-094 <a href="http://blogs.oracle.com/warehousebuilder/assets_c/2009/09/di-pods-2009-1428.html">See map</a>     <br />Come chat with OWB developers and product management about our latest release.</p>
<p><strong>An ETL Framework Using Oracle Warehouse Builder</strong>    <br />Monday October 12 2009    <br />13:00 -14:00 in Moscone South Room 270    <br />Speaker: Ian Abramson from Thoughtcorp, Inc    <br />Session: S307863</p>
<p><strong>Case Study: Building a Data Warehouse Cost-Effectively</strong>    <br />Tuesday October 13 2009    <br />11:30 - 12:30 in Moscone South Room 301    <br />Speaker: Dr. Holger Friedrich from SumIT AG    <br />Session: S307710     <br /><strong>     <br />Unconference on OWB </a></strong>    <br />Wednesday October 14 2009    <br />14:00 -15:00 at Moscone West, Third Floor, Overlook II    <br />Panel discussion    <br />Register <a href="http://blogs.oracle.com/warehousebuilder/2009/09/oow_special_unconference_on_owb_112_14_october_2pm_moscone_west.html">here</a></p>
</p>
<p><big><strong>Other Events</strong></big>    <br />The following events are open to the public unless otherwise noted:</p>
<p><strong>Warehouse Builder Goes Hybrid</a> </strong>    <br />Thursday October 15 2009    <br />14:00 -16:00 at The W Hotel    <br />Panel discussion    <br />Register <a href="http://blogs.oracle.com/warehousebuilder/2009/09/owb_the_w_hotel_warehouse_builder_goes_hybrid.html">here</a></p>
</p>
<p><strong>OWB 11.2: Enterprise-grade Data Integration for the Oracle Data Warehouse </strong>    <br />Wednesday October 21 2009    <br />12:00 -13:00 Eastern Time, virtual event hosted by <a href="http://ioug.itconvergence.com/pls/apex/f?p=219:1:3630288938788612::NO">Business Intelligence, Warehousing and Analytics SIG</a>    <br />Speaker: Antonio Romero, Product Manager from Oracle    <br />Register for this webcast <a href="http://ioug.itconvergence.com/pls/apex/f?p=219:1:3630288938788612">here </a></strong>    <br /><span><a href="http://blogs.oracle.com/warehousebuilder/assets_c/2009/09/di-pods-2009-thumb-1117x969-1428-thumb-160x138-1430-1433.html"></a></span></p></p>

<p><a href="http://feedads.g.doubleclick.net/~a/8uta06EimzqoBD0l40nHQv_ALWI/0/da"><img src="http://feedads.g.doubleclick.net/~a/8uta06EimzqoBD0l40nHQv_ALWI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8uta06EimzqoBD0l40nHQv_ALWI/1/da"><img src="http://feedads.g.doubleclick.net/~a/8uta06EimzqoBD0l40nHQv_ALWI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=XmOSAWDYHl0:RxQSRQW9aIM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=XmOSAWDYHl0:RxQSRQW9aIM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=XmOSAWDYHl0:RxQSRQW9aIM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=XmOSAWDYHl0:RxQSRQW9aIM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/XmOSAWDYHl0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/upcoming-owb-events/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/upcoming-owb-events/</feedburner:origLink></item>
		<item>
		<title>OWB @ the W Hotel: Warehouse Builder Goes Hybrid</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/2ml-XCkCQ7M/</link>
		<comments>http://oracle.nativeread.com/2009/11/owb-the-w-hotel-warehouse-builder-goes-hybrid/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:26 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/owb-the-w-hotel-warehouse-builder-goes-hybrid/</guid>
		<description><![CDATA[When? Thursday October 15th, 2-4 pm
Where? The W Hotel, Workroom 2
Who? OWB users, LinkedIn members, Open World attendees
How? Register using LinkedIn or send an email.
Come to this 2-hr interactive session to talk with a panel of OWB gurus about the latest release, OWB 11.2. 
The spotlight will be on what many herald as the most significant enhancement to OWB in years&#8211; hybrid mappings which combine:

OWB&#8217;s traditional ETL capabilities (dimensional modeling, data cleansing, etc.)
plus a new, more flexible method for accessing heterogeneous sources
plus the ability to control where transformations are performed (source vs. staging area or target)
all in a single tool <p style="font-size:11px">...click on the title to read the full article...</p>]]></description>
			<content:encoded><![CDATA[<p><strong>When?</strong> Thursday October 15th, 2-4 pm<br />
<strong>Where? </strong>The W Hotel, Workroom 2<br />
<strong>Who?</strong> OWB users, LinkedIn members, Open World attendees<br />
<strong>How?</strong> Register using <a href="http://events.linkedin.com/OWB-W-Hotel-Warehouse-Builder-Goes/pub/131757">LinkedIn</a> or send an <a href="mailto:dwhdoc_us@oracle.com">email</a>.</p>
<p>Come to this 2-hr interactive session to talk with a panel of OWB gurus about the latest release, OWB 11.2. </p>
<p>The spotlight will be on what many herald as the most significant enhancement to OWB in years&#8211; <strong>hybrid mappings</strong> which combine:</p>
<ul></p>
<li>OWB&#8217;s traditional ETL capabilities (dimensional modeling, data cleansing, etc.)
<li>plus a new, more flexible method for accessing heterogeneous sources
<li>plus the ability to control where transformations are performed (source vs. staging area or target)
<li>all in a single tool with one repository, one set of operators, one set of table definitions</li>
<p>
</ul>
</p>
<p>
For those familiar with Oracle Data Integrator (ODI), you&#8217;ll recognize hybrid mappings as a combination of OWB technology plus ODI&#8217;s knowledge module technology.<br />
For those familiar with OWB, come to this session to learn how you can take your existing OWB mappings and leverage the new technology for heterogeneous access.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/4v071-h34Pxd59FsOl5-kDZSPFg/0/da"><img src="http://feedads.g.doubleclick.net/~a/4v071-h34Pxd59FsOl5-kDZSPFg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4v071-h34Pxd59FsOl5-kDZSPFg/1/da"><img src="http://feedads.g.doubleclick.net/~a/4v071-h34Pxd59FsOl5-kDZSPFg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=2ml-XCkCQ7M:HXxGYX3ldnk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=2ml-XCkCQ7M:HXxGYX3ldnk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=2ml-XCkCQ7M:HXxGYX3ldnk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=2ml-XCkCQ7M:HXxGYX3ldnk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/2ml-XCkCQ7M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/owb-the-w-hotel-warehouse-builder-goes-hybrid/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/owb-the-w-hotel-warehouse-builder-goes-hybrid/</feedburner:origLink></item>
		<item>
		<title>OWB 11gR2 &amp;ndash; Architecture Overview</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/2Toi6t3KGuM/</link>
		<comments>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-architecture-overview/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:25 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-architecture-overview/</guid>
		<description><![CDATA[This post gives an overview of the OWB 11gR2 code template framework and runtime infrastructure, the code template framework is a key component in the product&#8217;s customization and open connectivity capabilities. This framework enables OWB to integrate much more data than before, faster, in many more ways and gives customers the capabilities to leverage their existing assets efficiently. There are lots of new features to check out, see the list within the Concepts guide here.
Oracle Warehouse Builder is built on top of a metadata repository that captures your design. Once you have created your design in the repository, Warehouse Builder <p style="font-size:11px">...click on the title to read the full article...</p>]]></description>
			<content:encoded><![CDATA[<p>This post gives an overview of the OWB 11gR2 code template framework and runtime infrastructure, the code template framework is a key component in the product&#8217;s customization and open connectivity capabilities. This framework enables OWB to integrate much more data than before, faster, in many more ways and gives customers the capabilities to leverage their existing assets efficiently. There are lots of new features to check out, see the list within the Concepts guide <a href="http://download.oracle.com/docs/cd/E11882_01/owb.112/e10581/whatsnew.htm#NEWFTCH1">here</a>.</p>
<p>Oracle Warehouse Builder is built on top of a metadata repository that captures your design. Once you have created your design in the repository, Warehouse Builder generates the code, and you deploy it somewhere. Prior to the 11gR2 release, for data integration routines, the tool generated a combination of SQL and PL/SQL (plus ABAP and SQL*Loader), allowing you to perform complex transformations on the data you are moving. It was primarily focused on Oracle, files and SAP sources with heterogeneous connectivity to all other systems using the Database Gateways. It was never possible to roll your sleeves up and reconfigure the physical execution of the    <br />mapping to make better use of the assets at hand. It was never possible to change the built-in templates to support features that were not supported out of the box. As we know, technology and the world around us is forever changing! There is a need to be able to integrate new types of data in new and different ways.</p>
<p>With Warehouse Builder 11gR2 it all changes.</p>
<p>The 11gR2 release supports both the existing code generation capabilities and an open extensible code template and connectivity framework based on the Oracle Data Integrator Knowledge Module framework. The benefits of open, extensible code template support is that you can: </p>
<ul>
<li>Have much greater architectural flexibility; you can apply technology at the right place and at the right time (push code to execute wherever it can be optimally executed). </li>
<li>Use alternative data movement strategies (bulk extract, ftp, scp, piped etc). </li>
<li>Integrate with additional systems through the Open Connectivity framework (platforms and code templates) </li>
<li>Provide implementations for standard design patterns for these systems (CDC, control, slowly changing dimensions etc). </li>
<li>Integrate database features that were not incorporated in the core product (for example, data pump external tables, pre-process files for external table) out of product release cycles. </li>
<li>Construct templates in a modular manner to share across common patterns. </li>
</ul>
<p><strong>Code Templates</strong></p>
<p>There are different categories of code templates which serve different purposes; there are templates for moving data over the wire (Load), templates for capturing changes (CDC), templates for some data quality tasks (Control) and for data integration (Integrate and Oracle Target). The illustration below gives an overview of how they fit together.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2ArchitectureOverview_A30B/owb_pluggable_code_templates.jpg"><img title="owb_pluggable_code_templates" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="148" alt="owb_pluggable_code_templates" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2ArchitectureOverview_A30B/owb_pluggable_code_templates_thumb.jpg" width="404" border="0" /></a> </p>
<p>With the OWB 11gR2 repository a number of code templates are already pre-seeded. There are a number of seeded platforms for integration such as Oracle, File, DB2 UDB etc and this set can be extended, allowing the reach of data to grow dynamically and the supporting integration capabilities extensible - a truly pluggable framework. </p>
<p>Code Code Templates (CTs) are components of Oracle Warehouse Builder&#8217;s open connectivity framework. CTs contain the knowledge required by Oracle Warehouse Builder to perform a specific set of tasks against a specific system or set of systems. Combined with a connectivity layer such as JDBC, CTs define an open connector that performs tasks against a system, such as connecting to this system, extracting data from it, transforming the data, checking it, integrating it, etc.</p>
<p>Open connectors contain a combination of:</p>
<ul>
<li>Connection strategy (JDBC, database utilities for instance). </li>
<li>Correct syntax (SQL etc.) for the platforms involved. </li>
<li>Control over the creation and deletion of all temporary/work tables, views, triggers, etc. </li>
<li>Data processing and transformation strategies. </li>
<li>Data movement options (create target table, insert/delete, update etc.). </li>
</ul>
<p>With these concepts the template builder is in complete control of fulfilling the implementation. When extending the reach of the data to be integrated, a new platform can be added, defining a new platform allows system specific code templates to be built that leverage specific features of that system. The platform defines the characteristics of a system such as how to connect to it, SQL characteristics (such as column alias separators, null keyword and so on) and the data types the system supports.</p>
<p><strong>Code Template Mappings</strong></p>
<p>The mapping design is mostly as before, a single logical design with a major shift that you can now configure the physical design and assign customizable code templates or assign the existing non-customizable Oracle Target template. The mapping can include a mixture of <strong>both</strong>, so you can leverage the flexibility offered for staging data via the open connectivity framework and the transformation and data warehouse operators (for example) provided by the traditional Oracle Target template - for example can leverage the CDC code templates for capturing changes and the data warehouse operators to build the warehouse.</p>
<p>The illustration below shows how a logical map design is physically configured into execution units which are assigned code templates, and the physical design is per configuration.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2ArchitectureOverview_A30B/owb_mapping_overview.jpg"><img title="owb_mapping_overview" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="owb_mapping_overview" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2ArchitectureOverview_A30B/owb_mapping_overview_thumb.jpg" width="361" border="0" /></a> </p>
<p>When we were building this we drew an analogy to islands and bridges, some code templates are bridges that move data from one island to another, and transformations or integration tasks can be performed on an island.</p>
<p>The code template based mappings reside in a different module, since they are executed in a different engine (the Control Center Agent), this module (just like other modules in OWB) is assigned a location, an Agent. The agent is where the mapping will be deployed and when executed this agent will orchestrate its execution.</p>
<p><strong>Control Center Agent</strong></p>
<p>The code template based mappings and web service support is facilitated through the Control Center Agent, a program that can be run on a machine to orchestrate the tasks in the mappings.</p>
<p>A mapping executes on a single Control Center Agent. If you want to remotely execute parts of the map on different systems you will have to use remote API calls including JDBC invocations, remote execute, database jobs using agent and so on.</p>
<p>The agent itself could be placed on a source or transformation system for example if you wanted to unload data using a native un-loader. The code templates are based on the Oracle Data Integrator 10g Substitution Reference interface, this interface (its only an interface, you can&#8217;t deploy OWB maps to an ODI agent) has been implemented based on the metadata OWB deploys for locations, connectors, mappings, web services and OWB Control Center Agent components.</p>
<p>The figure below illustrates the mechanics and dependencies of code template based mappings within the Control Center Agent.</p>
<p><a href="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2ArchitectureOverview_A30B/owb_cca_11gR2_2.jpg"><img title="owb_cca_11gR2" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="owb_cca_11gR2" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OWB11gR2ArchitectureOverview_A30B/owb_cca_11gR2_thumb.jpg" width="330" border="0" /></a> </p>
<p>The mappings are deployed to this OWB agent in a completely headless manner. They are deployed as J2EE applications but are not heavyweight java applications - the application is basically a very small driver script and a some metadata about the map. The connectors (from agent to source and target system) are deployed as J2EE data sources.</p>
<p>The objects following the same pattern as previous design items, just you can get much more control of what capabilities of a system you would like to leverage. Can envisage some interesting templates leveraging the different loading capabilities of DBFS into database machine in the future.</p>
<p>Anyway that&#8217;s a quick update which was easier to do that laying bamboo flooring and building closets (how many times did I hammer my hand, I know get a nail gun next time).</p>

<p><a href="http://feedads.g.doubleclick.net/~a/35s_z7fyOvEZ7u92jNruKumpDfE/0/da"><img src="http://feedads.g.doubleclick.net/~a/35s_z7fyOvEZ7u92jNruKumpDfE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/35s_z7fyOvEZ7u92jNruKumpDfE/1/da"><img src="http://feedads.g.doubleclick.net/~a/35s_z7fyOvEZ7u92jNruKumpDfE/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=2Toi6t3KGuM:4QuR9Vbrdfo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=2Toi6t3KGuM:4QuR9Vbrdfo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=2Toi6t3KGuM:4QuR9Vbrdfo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=2Toi6t3KGuM:4QuR9Vbrdfo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/2Toi6t3KGuM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-architecture-overview/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/owb-11gr2-ndash-architecture-overview/</feedburner:origLink></item>
		<item>
		<title>OOW Special: Unconference on OWB 11.2, 14 October, 2PM, Moscone West</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/7htoqWR1Whg/</link>
		<comments>http://oracle.nativeread.com/2009/11/oow-special-unconference-on-owb-112-14-october-2pm-moscone-west/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:24 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/oow-special-unconference-on-owb-112-14-october-2pm-moscone-west/</guid>
		<description><![CDATA[Technorati Tags: OWB,Oracle,Open World,ETL,data warehousing,data integration,business intelligence,BI,DW,ODI
While the formal sessions at Oracle Open World provide a lot of valuable information, sometimes the choicest nuggets turn up at the Unconference sessions, where Oracle employees, customers and partners can delve into the topics that interest them most in an interactive forum. 
For OWB customers the best chance to see OWB 11.2 at OpenWorld will be an Unconference session conducted jointly by Oracle DW and BI guru Mark Rittman and data integration product manager Antonio Romero. 
The real treat, though, will be the special guest appearance by OWB architect David Allan! Through this <p style="font-size:11px">...click on the title to read the full article...</p>]]></description>
			<content:encoded><![CDATA[<div>Technorati Tags: <a href="http://technorati.com/tags/OWB" rel="tag">OWB</a>,<a href="http://technorati.com/tags/Oracle" rel="tag">Oracle</a>,<a href="http://technorati.com/tags/Open+World" rel="tag">Open World</a>,<a href="http://technorati.com/tags/ETL" rel="tag">ETL</a>,<a href="http://technorati.com/tags/data+warehousing" rel="tag">data warehousing</a>,<a href="http://technorati.com/tags/data+integration" rel="tag">data integration</a>,<a href="http://technorati.com/tags/business+intelligence" rel="tag">business intelligence</a>,<a href="http://technorati.com/tags/BI" rel="tag">BI</a>,<a href="http://technorati.com/tags/DW" rel="tag">DW</a>,<a href="http://technorati.com/tags/ODI" rel="tag">ODI</a></div>
<p>While the formal sessions at Oracle Open World provide a lot of valuable information, sometimes the choicest nuggets turn up at the <strong>Unconference sessions</strong>, where Oracle employees, customers and partners can delve into the topics that interest them most in an interactive forum. </p>
<p>For OWB customers the<strong> best chance to see OWB 11.2 at OpenWorld</strong> will be an Unconference session conducted jointly by <strong>Oracle DW and BI guru Mark Rittman </strong>and <strong>data integration product manager Antonio Romero. </strong></p>
<p><a href="http://events.linkedin.com/Oracle-Open-World-Unconference-Oracle/pub/129305" target="_blank"><img title="unconference" style="border-right: 0px; border-top: 0px; display: inline; margin: 0px 0px 0px 10px; border-left: 0px; border-bottom: 0px" height="80" alt="unconference" src="http://blogs.oracle.com/warehousebuilder/WindowsLiveWriter/OOWSpecialUncon.214October2PMMosconeWest_12A48/unconference_3.jpg" width="260" align="right" border="0" /></a>The real treat, though, will be the <strong>special guest appearance by OWB architect David Allan</strong>! Through this blog, David has become one of the public faces of OWB and his knowledge of how to get the most out of the tool has been invaluable to internal and external users. </p>
<p>Planned topics include: </p>
<ul>
<li><strong>ODI-based code template mapping capabilities</strong> </li>
<li><strong>Integration of Warehouse Builder with OBI-EE</strong></li>
<li><strong>Right-time Data Warehousing: CDC, Trickle-feed mappings</strong></li>
</ul>
<p>&#8230;but since we&#8217;re in Unconference mode, we can do a little off-roading, time permitting, as the audience demands it. </p>
<p>Schedule details: <strong>Wednesday, October 14, Moscone West, Third Floor, Overlook II. </strong></p>
<p>While this is a bit unstructured, it helps to have a preliminary headcount. To register, you&#8217;ll need to take a second to join our LinkedIn Group if you haven&#8217;t already. <a href="http://events.linkedin.com/Oracle-Open-World-Unconference-Oracle/pub/129305" target="_blank">Click here to register!</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/dkWfARXXm_JXj3gan2F69lI9o2A/0/da"><img src="http://feedads.g.doubleclick.net/~a/dkWfARXXm_JXj3gan2F69lI9o2A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dkWfARXXm_JXj3gan2F69lI9o2A/1/da"><img src="http://feedads.g.doubleclick.net/~a/dkWfARXXm_JXj3gan2F69lI9o2A/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=7htoqWR1Whg:AIPEmunG7-Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=7htoqWR1Whg:AIPEmunG7-Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=7htoqWR1Whg:AIPEmunG7-Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=7htoqWR1Whg:AIPEmunG7-Y:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/7htoqWR1Whg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/oow-special-unconference-on-owb-112-14-october-2pm-moscone-west/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/oow-special-unconference-on-owb-112-14-october-2pm-moscone-west/</feedburner:origLink></item>
		<item>
		<title>OpenWorld announcements coming: Join our LinkedIn group</title>
		<link>http://feedproxy.google.com/~r/oracleread/~3/TzKPcGLGfug/</link>
		<comments>http://oracle.nativeread.com/2009/11/openworld-announcements-coming-join-our-linkedin-group/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:32:24 +0000</pubDate>
		<dc:creator>aggregator</dc:creator>
		
		<category><![CDATA[BI]]></category>

		<guid isPermaLink="false">http://oracle.nativeread.com/2009/11/openworld-announcements-coming-join-our-linkedin-group/</guid>
		<description><![CDATA[Busy here at HQ, preparing for Oracle Open World among other things. We will be announcing opportunities to see OWB 11.2 with the new ODI-based features at events at Open World through our LinkedIn group. Join the group now, to be sure you get the latest news:
http://www.linkedin.com/groups?about=&#038;gid=140609&#038;trk=anet_ug_grppro
-Antonio
]]></description>
			<content:encoded><![CDATA[<p>Busy here at HQ, preparing for Oracle Open World among other things. We will be announcing opportunities to see OWB 11.2 with the new ODI-based features at events at Open World through our LinkedIn group. Join the group now, to be sure you get the latest news:</p>
<p>http://www.linkedin.com/groups?about=&#038;gid=140609&#038;trk=anet_ug_grppro</p>
<p>-Antonio</p>

<p><a href="http://feedads.g.doubleclick.net/~a/h8IEYwUOfvIJMP2r7wM0aGrUFX4/0/da"><img src="http://feedads.g.doubleclick.net/~a/h8IEYwUOfvIJMP2r7wM0aGrUFX4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/h8IEYwUOfvIJMP2r7wM0aGrUFX4/1/da"><img src="http://feedads.g.doubleclick.net/~a/h8IEYwUOfvIJMP2r7wM0aGrUFX4/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/oracleread?a=TzKPcGLGfug:KlJHEGlte4w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/oracleread?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=TzKPcGLGfug:KlJHEGlte4w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/oracleread?i=TzKPcGLGfug:KlJHEGlte4w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/oracleread?a=TzKPcGLGfug:KlJHEGlte4w:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/oracleread?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/oracleread/~4/TzKPcGLGfug" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://oracle.nativeread.com/2009/11/openworld-announcements-coming-join-our-linkedin-group/feed/</wfw:commentRss>
		<feedburner:origLink>http://oracle.nativeread.com/2009/11/openworld-announcements-coming-join-our-linkedin-group/</feedburner:origLink></item>
	</channel>
</rss>
