<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: OCI --&amp;gt; ETL ..-&amp;gt; OCDWH --&amp;gt; Historical data for performace in Active IQ Unified Manager Discussions</title>
    <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97565#M17235</link>
    <description>&lt;P&gt;You need to look at using the dateTk and timeTk to join the Date and Time dimensions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;select 
distinct dd.fullDate 
from 
dwh_performance.internal_volume_daily_performance_fact intvolfact
LEFT JOIN
dwh_performance.date_dimension dd ON
intvolfact.dateTk = dd.tk
;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That should show you the unique fullDate values for which you have internal volume daily performance facts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: cleanup to make SQL legible. This example is SQL based because I thought that was the approach being taken. You should be able to do something similar in the OCI DWH drag and drop reporting tools - I don't have the object names memorized as I only dabble in reporting&lt;/P&gt;</description>
    <pubDate>Tue, 25 Nov 2014 04:04:57 GMT</pubDate>
    <dc:creator>ostiguy</dc:creator>
    <dc:date>2014-11-25T04:04:57Z</dc:date>
    <item>
      <title>OCI --&gt; ETL ..-&gt; OCDWH --&gt; Historical data for performace</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97506#M17226</link>
      <description>&lt;P&gt;I was wondering if someone can help acccess historical performance data from OnCommand DataWarehouse.&lt;/P&gt;&lt;P&gt;We hace access to following data marts and can't seem to access any performance data past one day using the table - "internal_volume_daily_performance_fact".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking to trend IOPS/MB/Latency for the past daily stats over a year.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;mysql&amp;gt; show databases;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;+-------------------------+&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| Database |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;+-------------------------+&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| information_schema |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| dwh_capacity |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| dwh_capacity_efficiency |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| dwh_fs_util |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| dwh_inventory |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| dwh_performance |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| dwh_ports |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| dwh_reports |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| dwh_sa |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| test |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| tmp |&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;+-------------------------+&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;mysql&amp;gt; use dwh_performance;&lt;BR /&gt;Database changed&lt;BR /&gt;mysql&amp;gt; show tables;&lt;BR /&gt;+--------------------------------------------+&lt;BR /&gt;| Tables_in_dwh_performance |&lt;BR /&gt;+--------------------------------------------+&lt;BR /&gt;| application_dimension |&lt;BR /&gt;| application_group_bridge |&lt;BR /&gt;| application_group_dimension |&lt;BR /&gt;| application_volume_hourly_performance_fact |&lt;BR /&gt;| business_entity_dimension |&lt;BR /&gt;| capacity_volume_fact_current |&lt;BR /&gt;| connected_device_dimension |&lt;BR /&gt;| date_dimension |&lt;BR /&gt;| disk_daily_performance_fact |&lt;BR /&gt;| disk_dimension |&lt;BR /&gt;| disk_hourly_performance_fact |&lt;BR /&gt;| fabric_dimension |&lt;BR /&gt;| host_dimension |&lt;BR /&gt;| host_group_bridge |&lt;BR /&gt;| host_group_dimension |&lt;BR /&gt;| host_vm_daily_performance_fact |&lt;BR /&gt;| host_vm_hourly_performance_fact |&lt;BR /&gt;| host_volume_hourly_performance_fact |&lt;BR /&gt;| internal_volume_daily_performance_fact |&lt;BR /&gt;| internal_volume_dimension |&lt;BR /&gt;| internal_volume_hourly_performance_fact |&lt;BR /&gt;| port_dimension |&lt;BR /&gt;| service_level_dimension |&lt;BR /&gt;| storage_dimension |&lt;BR /&gt;| storage_pool_dimension |&lt;BR /&gt;| switch_dimension |&lt;BR /&gt;| switch_performance_for_host_hourly_fact |&lt;BR /&gt;| switch_performance_for_port_hourly_fact |&lt;BR /&gt;| switch_performance_for_storage_hourly_fact |&lt;BR /&gt;| switch_performance_for_tape_hourly_fact |&lt;BR /&gt;| tape_dimension |&lt;BR /&gt;| tier_dimension |&lt;BR /&gt;| time_dimension |&lt;BR /&gt;| vm_daily_performance_fact |&lt;BR /&gt;| vm_dimension |&lt;BR /&gt;| vm_hourly_performance_fact |&lt;BR /&gt;| volume_daily_performance_fact |&lt;BR /&gt;| volume_dimension |&lt;BR /&gt;| volume_hourly_performance_fact |&lt;BR /&gt;+--------------------------------------------+&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Further, VMware Virtual Machine, ESX and ESXi VM capacity and Performance is available via table in mysql.&amp;nbsp; Its not currently available via the drag and drop datamarts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;Data Warehouse VM/ESX “Hourly” metrics available up to two weeks, 13 months for “Daily” metrics.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I access the&amp;nbsp;&lt;SPAN&gt;13 months for “Daily” metrics?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Modi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 05:24:05 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97506#M17226</guid>
      <dc:creator>mmodi</dc:creator>
      <dc:date>2025-06-05T05:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: OCI --&gt; ETL ..-&gt; OCDWH --&gt; Historical data for performace</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97544#M17232</link>
      <description>&lt;P&gt;dwh_inventory is only going to contain a day's worth of data, for the most recent ETL.&amp;nbsp; You will want to look at the performance mart for this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Retention periods for various DWH data are documented in the DWH Administration Guide.&amp;nbsp; For 7.0.1:&amp;nbsp; &lt;A href="https://library.netapp.com/ecmdocs/ECMP1154892/html/GUID-168DA633-1E68-43E9-B54D-B43F07B17D3B.html&amp;nbsp;" target="_blank"&gt;https://library.netapp.com/ecmdocs/ECMP1154892/html/GUID-168DA633-1E68-43E9-B54D-B43F07B17D3B.html&amp;nbsp;&lt;/A&gt; For other versions, consult the corresponding manual.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2014 15:51:10 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97544#M17232</guid>
      <dc:creator>moechnig</dc:creator>
      <dc:date>2014-11-24T15:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: OCI --&gt; ETL ..-&gt; OCDWH --&gt; Historical data for performace</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97564#M17234</link>
      <description>&lt;P&gt;Thanks mate, can you please&amp;nbsp;help determine the&amp;nbsp;&lt;SPAN&gt;performance data mart and fact table that retains daily summaries for volumes and internal volumes for 13 months?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following table doesn't seem to contain daily for more than a day and is not the inventory data mart -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SELECT * FROM dwh_performance.internal_volume_daily_performance_fact&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;========= Documentation exceprt -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Each day when the ETL is processed, the daily averages for the preceding day are calculated and populated within the Data Warehouse. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The daily average is a summary of the 24 data points for the previous day. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The performance data marts retain daily summaries for volumes and internal volumes for 13 months.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Modi&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2014 03:25:47 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97564#M17234</guid>
      <dc:creator>mmodi</dc:creator>
      <dc:date>2014-11-25T03:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: OCI --&gt; ETL ..-&gt; OCDWH --&gt; Historical data for performace</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97565#M17235</link>
      <description>&lt;P&gt;You need to look at using the dateTk and timeTk to join the Date and Time dimensions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;select 
distinct dd.fullDate 
from 
dwh_performance.internal_volume_daily_performance_fact intvolfact
LEFT JOIN
dwh_performance.date_dimension dd ON
intvolfact.dateTk = dd.tk
;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That should show you the unique fullDate values for which you have internal volume daily performance facts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: cleanup to make SQL legible. This example is SQL based because I thought that was the approach being taken. You should be able to do something similar in the OCI DWH drag and drop reporting tools - I don't have the object names memorized as I only dabble in reporting&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2014 04:04:57 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97565#M17235</guid>
      <dc:creator>ostiguy</dc:creator>
      <dc:date>2014-11-25T04:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: OCI --&gt; ETL ..-&gt; OCDWH --&gt; Historical data for performace</title>
      <link>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97566#M17236</link>
      <description>&lt;P&gt;Excellent, is it possible to list that SQL query as an example?&lt;/P&gt;&lt;P&gt;For end-users like me, I think there should be a very easy drag/drop report studio level way to derive a report for daily stats for past 13 months.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Modi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Nov 2014 04:01:41 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Active-IQ-Unified-Manager-Discussions/OCI-gt-ETL-gt-OCDWH-gt-Historical-data-for-performace/m-p/97566#M17236</guid>
      <dc:creator>mmodi</dc:creator>
      <dc:date>2014-11-25T04:01:41Z</dc:date>
    </item>
  </channel>
</rss>

