<?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: Summarize mainframe performance data in 15 min intervals in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Summarize-mainframe-performance-data-in-15-min-intervals/m-p/156260#M298937</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So long as you have a variable with the time in it the below could work for you, 900 being the number of seconds in 15 minutes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data temp;&lt;/P&gt;&lt;P&gt;format time1 - time3 atime1 - atime3 time8.;&lt;/P&gt;&lt;P&gt;time1 = '00:14:59't;&lt;/P&gt;&lt;P&gt;time2 = '00:15:00't;&lt;/P&gt;&lt;P&gt;time3 = '00:15:01't;&lt;/P&gt;&lt;P&gt;atime1 = int(time1/900)*900;&lt;/P&gt;&lt;P&gt;atime2 = int(time2/900)*900;&lt;/P&gt;&lt;P&gt;atime3 = int(time3/900)*900;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Dec 2014 17:07:38 GMT</pubDate>
    <dc:creator>Malv72</dc:creator>
    <dc:date>2014-12-18T17:07:38Z</dc:date>
    <item>
      <title>Summarize mainframe performance data in 15 min intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summarize-mainframe-performance-data-in-15-min-intervals/m-p/156259#M298936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking for any SAS samples of code to summarize mainframe performance data on less then 1 hr. intervals.&amp;nbsp; We currently summarize our reporting data to 1 hr., but I now need to summarize in 15min intervals for work on a performance problem. The data contains date(Month/Day/Year) and time(Hr. Min. Sec.) values.&amp;nbsp; Just trying to find an easy way to summarize it. The data come from our ASG Tmon CICS monitor software.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope somebody has already invented this wheel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx,&lt;/P&gt;&lt;P&gt;Jim Glover&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 16:37:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summarize-mainframe-performance-data-in-15-min-intervals/m-p/156259#M298936</guid>
      <dc:creator>Gloveman71</dc:creator>
      <dc:date>2014-12-18T16:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize mainframe performance data in 15 min intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summarize-mainframe-performance-data-in-15-min-intervals/m-p/156260#M298937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jim&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So long as you have a variable with the time in it the below could work for you, 900 being the number of seconds in 15 minutes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data temp;&lt;/P&gt;&lt;P&gt;format time1 - time3 atime1 - atime3 time8.;&lt;/P&gt;&lt;P&gt;time1 = '00:14:59't;&lt;/P&gt;&lt;P&gt;time2 = '00:15:00't;&lt;/P&gt;&lt;P&gt;time3 = '00:15:01't;&lt;/P&gt;&lt;P&gt;atime1 = int(time1/900)*900;&lt;/P&gt;&lt;P&gt;atime2 = int(time2/900)*900;&lt;/P&gt;&lt;P&gt;atime3 = int(time3/900)*900;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 17:07:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summarize-mainframe-performance-data-in-15-min-intervals/m-p/156260#M298937</guid>
      <dc:creator>Malv72</dc:creator>
      <dc:date>2014-12-18T17:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Summarize mainframe performance data in 15 min intervals</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Summarize-mainframe-performance-data-in-15-min-intervals/m-p/156261#M298938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For adjusting intervals you can use &lt;A href="http://support.sas.com/documentation/cdl/en/lefunctionsref/63354/HTML/default/viewer.htm#p10v3sa3i4kfxfn1sovhi5xzxh8n.htm" title="http://support.sas.com/documentation/cdl/en/lefunctionsref/63354/HTML/default/viewer.htm#p10v3sa3i4kfxfn1sovhi5xzxh8n.htm"&gt;SAS(R) 9.3 Functions and CALL Routines: Reference&lt;/A&gt; intnx&lt;/P&gt;&lt;P&gt;Sample for analysing SMF, that is what ASG TMON CICS is delivering, can be found with eg MCG (mxg.com) . That is part of IT service vision.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2014 19:12:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Summarize-mainframe-performance-data-in-15-min-intervals/m-p/156261#M298938</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-12-18T19:12:37Z</dc:date>
    </item>
  </channel>
</rss>

