UNCOMPRESS statement examples

The following example uncompresses in place all of the files with the extension dbf on the multi-volume file system tier3 that have been accessed over 60 minutes ago:

  <SELECT Flags="Data">
    <PATTERN> *.dbf </PATTERN>
  </SELECT>

  <UNCOMPRESS>
    <FROM>
      <SOURCE>
        <CLASS> tier3 </CLASS>
      </SOURCE>
    </FROM>
    <WHEN>
      <ACCAGE Units="minutes">
        <MIN Flags="gt">60</MIN>
      </ACCAGE>
    </WHEN>
  </UNCOMPRESS>

The following example uncompresses in place all of the files with the extension dbf on a single volume that have been accessed over 1 minute ago:

  <SELECT Flags="Data">
    <PATTERN> *.dbf </PATTERN>
  </SELECT>

  <UNCOMPRESS>
    <WHEN>
      <ACCAGE Units="minutes">
        <MIN Flags="gt">1</MIN>
      </ACCAGE>
    </WHEN>
  </UNCOMPRESS>