<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.dataprix.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Business Intelligence</title>
 <link>http://www.dataprix.com/en/businessintelligence</link>
 <description>The taxonomy view with a depth of 0.</description>
 <language>en</language>
<item>
 <title>Oracle Materialized views to optimize a Datawarehouse </title>
 <link>http://www.dataprix.com/en/views-materialized-oracle-optimize-datawarehouse</link>
 <description>&lt;div style=&quot;margin: 1ex;&quot;&gt;
&lt;div&gt;
&lt;p&gt;&lt;strong&gt;Datawarehouse &lt;/strong&gt;loadings are periodic, and &lt;strong&gt;summary tables&lt;/strong&gt; are useful to improve efficiency and the answer time of our reports. A physical optimisation resource that can bring big improvements in our system is the utilization of &lt;strong&gt;materialized&lt;/strong&gt; &lt;strong&gt;views&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;The view materialized is not more that a view, defined with one sentences SQL, of which in addition to storing his definition, store the data that returns, realizing an initial load and afterwards each true time a freshen of the same.&lt;/p&gt;
&lt;p&gt;Like this, if we have a Datawarehouse that update daily, could use views materialized to go updating intermediate tables that feed our diagrams of DWH, or directly to implement tables agregadas that will freshen from our tables base.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The creation of this type of views no so complex as it can seem, the most important is to have clear each how much time want to update the information of the views, and which method of freshen to use.&lt;/p&gt;
&lt;p&gt;Also will have to ensure us  that our licence of base of data allows us use them (has to  be a version Enterprise).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Sintaxis Basic for the  creation of a view materialized&lt;/h3&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;CREATE MATERIALIZED VIEW My_view_materialized&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [TABLESPACE My_tablespace]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [BUILDunknown{^*IMMEDIATE | DEFERRED}]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [REFRESHunknown{^*ON COMMIT | ON DEMAND | [START WITH Dates_start] NEXT dates_interval } |.Verbcj | FAST | FORCE} ]&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [unknown{^*ENABLE|DISABLE} QUERY REWRITE]&lt;br /&gt;
AS SELECT t1.Field1, t2.Field2&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  FROM My_table1 t1&amp;nbsp; , my_table2 t2&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  WHERE t1.Field_fk = t2.Field_pk&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AND &amp;hellip;&amp;nbsp;&lt;/em&gt;&lt;/p&gt;
&lt;h3&gt;Comments on the different  options:&amp;nbsp;&lt;/h3&gt;
&lt;ul type=&quot;disc&quot;&gt;
&lt;li&gt;
&lt;h4&gt;&lt;strong&gt;Load of data in    the view&lt;/strong&gt;&lt;/h4&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;BUILD IMMEDIATE:&lt;/em&gt;&lt;br /&gt;
&amp;nbsp; The data of the view load  in the same moment of the creation&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;BUILD DEFERRED&lt;/em&gt;:&lt;br /&gt;
&amp;nbsp; Only create the definition, the data will load more forward. To realize this load can use the function REFRESH of the package DBMS_MVIEW:&lt;br /&gt;
&lt;em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; begin&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbms_mview.refresh(&#039;My_view_&lt;/em&gt;&lt;wbr&gt;&lt;/wbr&gt;&lt;em&gt;materialized&#039;);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/em&gt;&amp;nbsp;&lt;/p&gt;
&lt;ul type=&quot;disc&quot;&gt;
&lt;li&gt;
&lt;h4&gt;&lt;strong&gt;Method and temporalidad    of the freshen of the data&lt;/strong&gt;&lt;/h4&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;p&gt;&lt;span style=&quot;display: none;&quot; id=&quot;1218606759544S&quot;&gt;&amp;nbsp;&lt;/span&gt;Each how much time will freshen  :&lt;/p&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;p&gt;&lt;em&gt;REFRESH ON COMMIT&lt;/em&gt;:&lt;br /&gt;
    &amp;nbsp; Each time that do  a commit in the objects origin defined in  the select&amp;nbsp;&lt;/p&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;p&gt;&lt;em&gt;REFRESH ON DEMAND&lt;/em&gt;:&lt;br /&gt;
    &amp;nbsp; As with the option DEFERRED of the BUILD, will use the procedures REFRESH, REFRESH_ALL_MVIEWS or REFRESH_DEPENDENT of the package DBMS_MVIEW&amp;nbsp;&lt;/p&gt;
&lt;/ul&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;REFRESH [START WITH Dates_start]  NEXT dates_interval&lt;/em&gt;:&lt;br /&gt;
&amp;nbsp; START WITH Indicate the date of the first  freshen (dates_start suele be a SYSDATE)&lt;br /&gt;
&lt;span style=&quot;display: none;&quot; id=&quot;1218606742062S&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;display: none;&quot; id=&quot;1218606741321S&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;display: none;&quot; id=&quot;1218606740630S&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&amp;nbsp; NEXT indicates each how much  time will update  (dates_interval could be SYSDATE +1 to  realize the freshen once to the day)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;h4&gt;&lt;strong&gt;Of which way will freshen &lt;/strong&gt;&lt;/h4&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;REFRESH COMPLETE&lt;/em&gt;:&lt;br /&gt;
The freshen will do  of all the data of the view materialized, the recrear&amp;aacute; entirely each time that launch  the freshen&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;REFRESH FAST&lt;/em&gt;:&lt;br /&gt;
The freshen will be incremental, is the option more recomendable, the of &lt;em&gt; fast&lt;/em&gt; already gives an idea of the porqu&amp;eacute;. &lt;br /&gt;
This type of freshen has quite a lot of  restrictions as the type of view that was creating . &lt;br /&gt;
They can   consult generally &lt;a target=&quot;_blank&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://download.oracle.com/docs/cd/B19306_01/server.102/b14223/basicmv.htm#sthref534&quot; rel=&quot;nofollow&quot;&gt;Restrictions on Fast Refresh&lt;/a&gt; of the official documentation of Oracle&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;One of the important things to have in account is that to can use this method almost always is necessary to have created before a LOG of the View materialized, indicating the key fields in which will base the maintenance of the view. &lt;br /&gt;
It uses  the instruction CREATE MATERIALIZED VIEW LOG ON:&lt;em&gt;&lt;br /&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;&amp;nbsp;&amp;nbsp; CREATE MATERIALIZED VIEW LOG  ON My_table_origin&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WITH PRIMARY  KEY&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INCLUDING  NEW VALUES;&lt;/em&gt;&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;REFRESH FORCE&lt;/em&gt;:&lt;br /&gt;
With this method indicate  that if it is possible use  the metodo FAST,  and if no the COMPLETE.&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;To know if a view materialized  can use the method FAST, the package DBMS_MVIEW provide the  procedure EXPLAIN_MVIEW&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;h4&gt;&lt;strong&gt;Activaci&amp;oacute;n Of the reescritura of queries&lt;/strong&gt;&lt;/h4&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;ENABLE QUERY REWRITE&lt;/em&gt;:&lt;br /&gt;
Allow  to the base of data the reescritura of queries&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;DISABLE QUERY REWRITE&lt;/em&gt;:&lt;br /&gt;
desactiva The reescritura of queries&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;The option QUERY REWRITE is the one who more go to use if we love the views materialized to optimize ours Date warehouse. &lt;br /&gt;
This option allows to create tables agregadas in form of views materialized, and that when it launch a SELECT the base of data can reescribirla to consult the table or view that go to give back the data requested in less time, everything of way totally transparent &lt;em&gt;to the user&lt;/em&gt;&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;The only that there is that do is to create the tables agregadas like views materialized with QUERY REWRITE enabled.&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Examples of views materialized&lt;/h3&gt;
&lt;p&gt;They are a lot of combinations, but  the final sentence is not so complex.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h4&gt;First step of the ETL&lt;/h4&gt;
&lt;p&gt;If we wanted to create a view materialized of a table that freshen a day to the week, and of way incremental would do the following:&amp;nbsp;&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;CREATE MATERIALIZED VIEW LOG  ON My_table_origin&lt;br /&gt;
&amp;nbsp;&amp;nbsp; WITH&amp;nbsp; PRIMARY  KEY&lt;br /&gt;
&amp;nbsp;&amp;nbsp; INCLUDING NEW  VALUES;&amp;nbsp;&lt;br /&gt;
CREATE MATERIALIZED VIEW My_view_materialized&lt;br /&gt;
&amp;nbsp; REFRESH FAST&amp;nbsp; NEXT  SYSDATE + 7&lt;br /&gt;
&amp;nbsp; AS SELECT field1, field2,  field8&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  FROM My_table_origin&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE Field2  &amp;gt; 5000;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;This view could serve us to feed the load of a Dates Mart that it realized weekly. We could programarla so that it freshened fair before the start of the process of load, or as first step in the ETL, and already would have the necessary data updated, and independent of the origin of data (would not have to bother more to the operacional). Another advantage to have in account is that if there is some problem with the access to the data origin, if we have not deleted them, in the view materialized still will have the data of the last freshen, with what although the freshen failed would not find us an error that truncated the load of ours Date Warehouse, or an empty table. &lt;br /&gt;
Of course, in the conditions of the WHERE could select only the necessary registers, only the ones of the last month, etc.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h4&gt;Tables agregadas&lt;/h4&gt;
&lt;p&gt;Another important example would be the utilization of views materialized for the &lt;strong&gt;creation of tables agregadas&lt;/strong&gt;:&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;CREATE MATERIALIZED VIEW Sales_agregadas_mv&lt;br /&gt;
&amp;nbsp; BUILD IMMEDIATE&lt;br /&gt;
&amp;nbsp; REFRESH COMPLETE&lt;br /&gt;
&amp;nbsp; ENABLE QUERY REWRITE&lt;br /&gt;
AS&lt;br /&gt;
&amp;nbsp; SELECT Go_product, sum(amount) total_sales&lt;br /&gt;
&amp;nbsp; FROM Sales;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;With this simple sentence would create a table agregada of total of sales by product of a supposed table of sales than serious the table of facts.&lt;/p&gt;
&lt;p&gt;To level of session also there would be that ensure that the option QUERY_REWRITE was actuated. Just in case enable  with&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;ALTER SESSION SET QUERY_REWRITE_ENABLED=TRUE;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;If now inside this session executes  the sentence&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;SELECT sum(Amount)&lt;br /&gt;
FROM Sales;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The base of data will prepare the plan of execution having in account the view materialized created and internally will realize the selection on the seen sales_agregadas_mv.&lt;/p&gt;
&lt;p&gt;A simple way to check it, apart to examine the plan of execution, or to compare time before and after the creation of the view, or desactivando the QUERY_REWRITE, is to check that this sentence gives back resulted in the same time that the sentence&lt;/p&gt;
&lt;p class=&quot;rteindent1&quot;&gt;&lt;em&gt;SELECT sum(Amount)&lt;br /&gt;
FROM Sales_agregadas_mv;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To consult more details, or the sintaxis complete of the creation of views materialized in the chapter &lt;a target=&quot;_blank&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_6002.htm#i2063793&quot; rel=&quot;nofollow&quot;&gt;Create Materialized View&lt;/a&gt; of the manual of reference SQL of Oracle&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;With enterprise manager or with the console web of the base of data also can create the views materialized of a more assisted way, but equally is important to have clear the concepts before doing it.&lt;/p&gt;
&lt;p&gt;&lt;img align=&quot;middle&quot; alt=&quot;Vistas materializadas en Oracle Enterprise Manager&quot; src=&quot;../../../../../../files/uploads/2/rmsnapgr.gif&quot; style=&quot;width: 633px; height: 546px;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;!-- google_ad_section_end --&gt;&lt;/p&gt;
</description>
 <comments>http://www.dataprix.com/en/views-materialized-oracle-optimize-datawarehouse#comments</comments>
 <category domain="http://www.dataprix.com/en/businessintelligence">Business Intelligence</category>
 <category domain="http://www.dataprix.com/en/category/business-intelligence/data-warehouse">Data warehouse</category>
 <category domain="http://www.dataprix.com/en/category/bases-de-datos/base-de-datos/oracle">Oracle</category>
 <category domain="http://www.dataprix.com/en/category/bases-de-datos/base-de-datos">Bases de datos</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/dise-o-f-sico">diseño físico</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/sql">SQL</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/vistas">vistas</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/vistas-materializadas">vistas materializadas</category>
 <pubDate>Thu, 23 Oct 2008 13:13:20 +0200</pubDate>
 <dc:creator>carlos</dc:creator>
 <guid isPermaLink="false">296 at http://www.dataprix.com</guid>
</item>
<item>
 <title>Manual of metodologia HEFESTO for Datawarehousing </title>
 <link>http://www.dataprix.com/en/manual-metodologia-hefesto-datawarehousing</link>
 <description>&lt;p&gt;We have published a new manual online in Dataprix. Treat  of &lt;a rel=&quot;nofollow&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.dataprix.com/es/data-warehousing-hefesto&quot;&gt;the Methodology Hefesto&lt;/a&gt; prepared by Ricardo Dario Bernabeu, to the one who agradecemos this important aportaci&amp;oacute;n to the world BI hispano.&lt;/p&gt;
&lt;p class=&quot;rtecenter&quot;&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.dataprix.com/es/data-warehousing-hefesto&quot;&gt;&lt;img height=&quot;59&quot; width=&quot;250&quot; align=&quot;middle&quot; alt=&quot;Logo metodolog&amp;iacute;a HEFESTO&quot; src=&quot;../../../../../../files/uploads/2/hefesto_fusion_html_m1f994ad5.jpg&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p class=&quot;rteleft&quot;&gt;The manual divide  in two parts:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The first carries by title &lt;a rel=&quot;nofollow&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.dataprix.com/es/data-warehousing-investigaci-n-y-sistematizaci-n-conceptos&quot;&gt;Datawarehousing: Investigation and Sistematizaci&amp;oacute;n of Concepts&lt;/a&gt;, and in her enters the concept of Business Intelligence, and detail the fundamentos theoretical necessary to understand and can work with systems of Dates Warehouse.&lt;/li&gt;
&lt;li&gt;In the second part, &lt;a rel=&quot;nofollow&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.dataprix.com/es/hefesto-metodologia-propia-para-la-construccion-un-data-warehouse&quot;&gt;HEFESTO: proper Methodology for the Building of a Dates Warehouse&lt;/a&gt;, enter already the methodology Hefesto, that details all the necessary stages for the building of a Datawarehouse corporate, of a very clear way, with charts (that always help), and asentando the concepts applying them on an &lt;a rel=&quot;nofollow&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.dataprix.com/es/descripcion-la-empresa&quot;&gt;example of company&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We left also the &lt;a href=&quot;http://linuxbi.com/files/datawarehouse_hefesto.pdf&quot; target=&quot;_blank&quot;&gt;original document in format PDF&lt;/a&gt;, for the one who prefer descargarselo, and expected that Ricardo surprise us prompt with a new version or another aportaci&amp;oacute;n of so much quality like this methodology.&lt;/p&gt;
&lt;p&gt;The document is under a Licence &lt;a rel=&quot;nofollow&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.dataprix.com/es/licencia-documentacion-libre-gnu&quot;&gt;of Free Documentation of GNU&lt;/a&gt;, and the intention of the author is that it go evolving with other aportaciones, by what anyone that want to propose an improvement can do it from here same.&lt;/p&gt;
&lt;p class=&quot;rtecenter&quot;&gt;&lt;a href=&quot;http://www.dataprix.com/es/data-warehousing-hefesto&quot; rel=&quot;nofollow&quot;&gt;&lt;br /&gt;
&lt;/a&gt;&lt;/p&gt;
</description>
 <comments>http://www.dataprix.com/en/manual-metodologia-hefesto-datawarehousing#comments</comments>
 <category domain="http://www.dataprix.com/en/businessintelligence">Business Intelligence</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/datawarehouse-corporativo">datawarehouse corporativo</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/hefesto">hefesto</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/manual-dwh">manual DWH</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/metodologia-datawarehouse">metodologia datawarehouse</category>
 <pubDate>Thu, 23 Oct 2008 13:09:59 +0200</pubDate>
 <dc:creator>carlos</dc:creator>
 <guid isPermaLink="false">295 at http://www.dataprix.com</guid>
</item>
<item>
 <title>EasyAsk, software of BI with searcher of intelligent &#039;reports&#039; </title>
 <link>http://www.dataprix.com/en/easyask-software-bi-searcher-intelligent-reports</link>
 <description>&lt;p&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.easyask.com&quot;&gt;EasyAsk&lt;/a&gt;, of Progress Software, is a tool of BI with the peculiaridad that for the application of reports, analysis or even pictures of control provides to the user an interface where formulates a question or a request of the information that precise, in lenguaje natural, and the tool translates it to SQL, MDX or what do fault to give back a report of what the user requests. It is as a searcher, but applied to our systems of information. &lt;br /&gt;
The new is in that seems that no only limit to locate reports, as already do the systems of research of other tools of BI, but that besides interprets the entered by the user in lenguaje natural like parameters to show him fair the information that has requested.&lt;br /&gt;
With this functionality remains well justified his classification like tool of &lt;em&gt;Business Intelligence&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img height=&quot;408&quot; width=&quot;600&quot; src=&quot;../../../../../../files/uploads/2/easyask.jpg&quot; alt=&quot;Easyask BI, de Progress Software&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In this &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.easyask.com/demo.html&quot;&gt;demo of EasyAsk&lt;/a&gt;&amp;nbsp;can check how works. Only is missing to see how there is that prepare the information, the reports, the parameters and the metadatos so that the searcher hit with the requests that does the user.&lt;br /&gt;
If somebody has had opportunity to test it, that comment us what such comport , and if with real data resolves the requests so well as in the demo.&lt;/p&gt;
</description>
 <comments>http://www.dataprix.com/en/easyask-software-bi-searcher-intelligent-reports#comments</comments>
 <category domain="http://www.dataprix.com/en/businessintelligence">Business Intelligence</category>
 <category domain="http://www.dataprix.com/en/category/business-intelligence/dashboard">Dashboard</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/bi">BI</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/buscador">buscador</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/herramientas">herramientas</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/reporting">reporting</category>
 <pubDate>Thu, 23 Oct 2008 13:06:39 +0200</pubDate>
 <dc:creator>carlos</dc:creator>
 <guid isPermaLink="false">294 at http://www.dataprix.com</guid>
</item>
<item>
 <title>Virtual image with Pentaho configured </title>
 <link>http://www.dataprix.com/en/virtual-image-pentaho-configured</link>
 <description>&lt;p&gt;We have prepared a virtual image with an installation preconfigurada of &lt;strong&gt;Pentaho&lt;/strong&gt;, that can  discharge freely from the site &lt;a href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://linuxbi.com/imagen-virtual-pentaho-download&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;&lt;img height=&quot;27&quot; width=&quot;30&quot; align=&quot;absmiddle&quot; src=&quot;../../../../../../files/uploads/2/download.gif&quot; alt=&quot;Descargar Imagen Virtual de Pentaho&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://linuxbi.com/imagen-virtual-pentaho-download&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;LinuxBI&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The image works with the software of virtualizaci&amp;oacute;n &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.virtualbox.org/wiki/Downloads&quot;&gt;Sun VirtualBox 2.0&lt;/a&gt;. We have chosen Virtual Box because it is available for &lt;strong&gt;Linux&lt;/strong&gt;, &lt;strong&gt;OS X&lt;/strong&gt; (Mac) and &lt;strong&gt;Windows&lt;/strong&gt;, and because dispone of a free edition of evaluation and personal use, and another Open Source subject to the conditions of the licence GPL. Of this way our image will be able to use freely in any surroundings, always that they respect the conditions of the licences.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Virtualizaci&amp;oacute;n&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;VirtualBox&lt;/strong&gt; Install with ease in any surroundings, and his operation is very intuitive, but attach the manual of user for the one who do not know the tool, or&amp;nbsp; want to use options advanced. &lt;br /&gt;
To use our servidor virtual can  follow these simple steps:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Install VirtualBox&lt;/li&gt;
&lt;li&gt;Discharge the virtual disk from &lt;a href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://linuxbi.com/imagen-virtual-pentaho-download&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;&lt;img height=&quot;27&quot; width=&quot;30&quot; align=&quot;absmiddle&quot; src=&quot;../../../../../../files/uploads/2/download.gif&quot; alt=&quot;Descargar Imagen Virtual de Pentaho&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://linuxbi.com/imagen-virtual-pentaho-download&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;virtual Image Pentaho&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Descomprimirlo In the directory of virtual disks of VirtualBox, usually call  VDI&lt;/li&gt;
&lt;li&gt;Execute VirtualBox and create a new machine with the assistant of the application, choosing the type of Operative System &lt;em&gt;Net Hat&lt;/em&gt;, 512 Mb by heart (this is a suggestion), and the virtual disk discharged like disk of start.&lt;/li&gt;
&lt;li&gt;Arrancar The machine doing double click on her.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Like &lt;strong&gt;Operative System&lt;/strong&gt; base for the installation of Pentaho has chosen   &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.centos.org/&quot;&gt;CentOS 5&lt;/a&gt;. The reasons also have to see with the use that can him give to this image. This UNDER Linux is based in the code free source that uses &lt;a rel=&quot;nofollow&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.redhat.es/&quot; target=&quot;_blank&quot;&gt;Net Hat Enterprise Linux &lt;/a&gt;and, to practical effects, works of the same way that this known business version of Linux, and is orientado also to a business use, but is totally of free distribution. Can use until in some surroundings of production, and most of the documentation and practical of RedHat are applicable to CentOS.&lt;/p&gt;
&lt;p&gt;It has created  the user &lt;em&gt;dataprix&lt;/em&gt;. The password so much of this user and of the user root is also &lt;em&gt;dataprix&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img height=&quot;457&quot; width=&quot;600&quot; alt=&quot;CentOS instalado sobre VirtualBox&quot; src=&quot;../../../../../../files/uploads/2/Dataprix_CentOS_VirtualBox.jpg&quot; /&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Agradecemos To Oscar Osta the preparation of virtual image initial with the installation of CentOS.&lt;/p&gt;
&lt;h2&gt;Pentaho&lt;/h2&gt;
&lt;p&gt;It has done  an installation of &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.pentaho.com/products/bi_platform/&quot;&gt;Pentaho BI Suite PCI&lt;/a&gt;, that is the installation of &lt;strong&gt;Pentaho&lt;/strong&gt; that comes preconfigurada and with a base of data &lt;a rel=&quot;nofollow&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://hsqldb.org/&quot; target=&quot;_blank&quot;&gt;Hypersonic&lt;/a&gt; (HSQLDB) operative and with data of proof so that they can execute the reports and &#039;applications&#039; that can find in the portal of example that have accessible when raising the servidor.&lt;/p&gt;
&lt;p&gt;Can use this installation to test the platform in your proper machine/servidor, exploring the options of the portal, or even can use like base to build a proper system of BI with &lt;strong&gt;Pentaho&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;The last instantaneous that has captured of the state of the virtual machine already has the servidor of BI raised and the open portal in the navigator Firefox. The users of the portal already have the password entered.&lt;/p&gt;
&lt;p&gt;aneras, indicate how can  raise the servidor each time that  start the machine:&lt;/p&gt;
&lt;p&gt;Once created the virtual machine, the steps to go in in the session and raise the servidor of BI are the following&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Arrancar The virtual machine from the interface graphic of VirtualBox&lt;/li&gt;
&lt;li&gt;Go in with the user &lt;em&gt;dataprix&lt;/em&gt;, password &lt;em&gt;dataprix&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Do double click in the Terminal &lt;em&gt;Icon&lt;/em&gt; of the desk&lt;/li&gt;
&lt;li&gt;In the window of the terminal execute the following commandos:&lt;br /&gt;
    &amp;nbsp; &lt;em&gt;$ cd pentaho-demo&lt;/em&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Directory of the demo)&lt;br /&gt;
    &amp;nbsp; &lt;em&gt;$ ./start-pentaho.sh&amp;nbsp;&amp;nbsp; &lt;/em&gt;(shell Of start of the platform)&lt;/li&gt;
&lt;li&gt;Expect to that in the terminal appear the message &lt;em&gt;Pentaho BI server smart&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Open the browser Firefox (icon to the side of the option of men&amp;uacute; System)&lt;br /&gt;
    The url of access to the portal is &lt;em&gt;http://localhost:8080/pentaho&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;img height=&quot;478&quot; width=&quot;600&quot; alt=&quot;Pentaho funcionando con CentOS sobre VirtualBox &quot; src=&quot;../../../../../../files/uploads/2/Dataprix_PortalPentaho_VirtualBox.jpg&quot; /&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Each time that reinicie the machine there be that execute this script if you want to use the portal, also could do that it executed the shell each time that initiate the servidor.&lt;/p&gt;
&lt;p&gt;To detain the servidor Pentaho, opening another terminal:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;em&gt;$ cd pentaho-demo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $ ./stop-pentaho.sh&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;This is the most basic installation, that is configured to work in venue and on Hypersonic, perfect to evaluate the possibilities of this software open source of Business Intelligence, or for a first takes of contact without a lot of complications. Also serves like base to prepare things more complex, and expect in a future can go broadening this virtual image with new functionalities, configurations, proofs or give interesting.&lt;/p&gt;
&lt;p&gt;If somebody uses this image like base to do something interesting agradeceremos that us explain it, or that put in contact with us if it loves that we lodge his &#039;version&#039;. Equally any comment, doubt, idea or suggestion will be bienvenido in our forum, in the subject &lt;a rel=&quot;nofollow&quot; href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.dataprix.com/es/imagen-virtual-pentaho&quot;&gt;Virtual Image with Pentaho&lt;/a&gt;.&lt;/p&gt;
</description>
 <comments>http://www.dataprix.com/en/virtual-image-pentaho-configured#comments</comments>
 <category domain="http://www.dataprix.com/en/businessintelligence">Business Intelligence</category>
 <category domain="http://www.dataprix.com/en/category/business-intelligence/dashboard">Dashboard</category>
 <category domain="http://www.dataprix.com/en/category/business-intelligence/data-warehouse">Data warehouse</category>
 <category domain="http://www.dataprix.com/en/category/business-intelligence/olap">OLAP</category>
 <category domain="http://www.dataprix.com/en/taxonomy/term/74">Data warehouse</category>
 <category domain="http://www.dataprix.com/en/category/software-libre/centos">centos</category>
 <category domain="http://www.dataprix.com/en/taxonomy/term/77">Minería de datos</category>
 <category domain="http://www.dataprix.com/en/open-source">Software libre</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/centos">centos</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/imagen-virtual">imagen virtual</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/instalacion">instalacion</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/pentaho">pentaho</category>
 <enclosure url="http://www.dataprix.com/en/system/files/VirtualBoxUserManual.pdf" length="4627346" type="application/pdf" />
 <pubDate>Thu, 23 Oct 2008 12:58:58 +0200</pubDate>
 <dc:creator>carlos</dc:creator>
 <guid isPermaLink="false">293 at http://www.dataprix.com</guid>
</item>
<item>
 <title>BI book: Business Intelligence, Compete with Information </title>
 <link>http://www.dataprix.com/en/i-rid-bi-business-intelligence-compete-information</link>
 <description>&lt;p&gt;&lt;a href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://madoc.esade.es/asi/cvs.nsf/WP/JOSEPLLUIS.CANO%3fOpenDocument%26amp%3bidioma%3dESP&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Josep Lluis Cano&lt;/a&gt; is the author of the book Business Intelligence: compete with Information. This excellent work explains in what consists the Business Intelligence and can be a big guide for abordar projects of BI. It is orientado sobretodo for directors of pymes that want to go in in the world BI, and do his more competitive company, by what the lenguaje is clear and the very practical content.&lt;/p&gt;
&lt;p&gt;The first chapters explain all the necessary to know what is the BI, what can aportar to the company, which are his technical bases, and how can organize a project of Business Intelligence:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Chapter 1. Introduction to the Business Intelligence &lt;br /&gt;
Chapter 2. Modelizaci&amp;oacute;n Of the Business &lt;br /&gt;
Chapter 3. Model of data &lt;br /&gt;
Chapter 4. Components of Business Intelligence &lt;br /&gt;
Chapter 5. Projects of Business Intelligence &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The two last chapters are especially practical, and contain references to different tools and providers of BI and cases of success of implementations of projects of this type:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Chapter 6. Selection of tools and providers &lt;br /&gt;
Chapter 7. Experiences of implementation of Business Intelligence&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The last chapter throws a look to the current market of BI, and comment to where direct :&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Chapter 8. Uses of Business Intelligence and new trends &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;At the end include also an annex on the Model Relacional of bases of data and the lenguaje SQL and a complete bibliographic reference and &lt;em&gt;webgr&amp;aacute;fica&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;The electronic book in format pdf can  discharge of &lt;a href=&quot;http://dataprix.com/files/BusinessIntelligence_CompetirConInformacion.pdf&quot;&gt;Business Intelligence: compete with Information&lt;/a&gt;, and has been obtained of &lt;a href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://www.scribd.com/doc/3475060/Libro-BI-Competir-con-Informacion&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;ScriptBD&lt;/a&gt;, where specify  that it is under a licence of &lt;a href=&quot;http://xixona.dlsi.ua.es/apertium-www/common/browser.php?mark=&amp;amp;dir=es-en&amp;amp;inurl=http://creativecommons.org/licenses/by-nc/3.0/&quot; rel=&quot;nofollow&quot;&gt;attribution no commercial&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description>
 <comments>http://www.dataprix.com/en/i-rid-bi-business-intelligence-compete-information#comments</comments>
 <category domain="http://www.dataprix.com/en/businessintelligence">Business Intelligence</category>
 <category domain="http://www.dataprix.com/en/category/business-intelligence/data-warehouse">Data warehouse</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/bi">BI</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/dwh">dwh</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/libro">libro</category>
 <category domain="http://www.dataprix.com/en/category/etiquetas/manuales">manuales</category>
 <pubDate>Mon, 22 Sep 2008 15:17:22 +0200</pubDate>
 <dc:creator>carlos</dc:creator>
 <guid isPermaLink="false">286 at http://www.dataprix.com</guid>
</item>
</channel>
</rss>
