<?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: Backup utility in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599941#M70199</link>
    <description>Thanks for all your help with this.  We tried the [000000...] in our backups and that was the problem.  We are now getting the files we wanted in our since=backup.  Thanks again!</description>
    <pubDate>Tue, 16 Aug 2005 16:41:06 GMT</pubDate>
    <dc:creator>Arlene Strauss</dc:creator>
    <dc:date>2005-08-16T16:41:06Z</dc:date>
    <item>
      <title>Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599933#M70191</link>
      <description>OpenVMS 7.3-1. We are using the SINCE=BACKUP switch with a RECORD switch on our nightly backups and getting every file on the disk backed up.  I know that some of these directories and files are stale and have not been read or modified in ages, but they are getting backed up every night anyway.  We are also running DISKEEPER on these disks every day.  Could DISKEEPER be causing these files to be flagged as read/modified?  Is there someting else I need to do to not get these directories/files?  Thanks!</description>
      <pubDate>Tue, 09 Aug 2005 16:01:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599933#M70191</guid>
      <dc:creator>Arlene Strauss</dc:creator>
      <dc:date>2005-08-09T16:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599934#M70192</link>
      <description>Arlene,&lt;BR /&gt;&lt;BR /&gt;How are you determining that you're getting every file backed up? There are probably 2 or 3 ways to tell.  I'm curious what's tipping you off is all.&lt;BR /&gt;&lt;BR /&gt;I don't know about DISKEEPER -- it should not be modifying the creation/revision/backup time stamps. &lt;BR /&gt;&lt;BR /&gt;Please do a directory/full on some of the files and take a look at the BACKUP date/time stamps on them to verify that the /RECORD is actually happening.  If the backup time is never getting updated, this would explain the problem too.&lt;BR /&gt;&lt;BR /&gt;Also, what V7.3-1 patches do you have installed?  Do you have the latest BACKUP and/or 731_UPDATE patch kits installed? &lt;BR /&gt;&lt;BR /&gt;Robert</description>
      <pubDate>Tue, 09 Aug 2005 17:04:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599934#M70192</guid>
      <dc:creator>Robert_Boyd</dc:creator>
      <dc:date>2005-08-09T17:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599935#M70193</link>
      <description>Hi Arlene,&lt;BR /&gt;&lt;BR /&gt;have a look at the modification date of these files not modified in ages ($dir/date=m or better $dir/date=all). Is the modification date a new or an old one?&lt;BR /&gt;&lt;BR /&gt;Maybe it would also be useful if you quote the backup command in total.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;EW&lt;BR /&gt;&lt;BR /&gt;Two remarks:&lt;BR /&gt;- no defragmenter tool I know does cause this&lt;BR /&gt;- and read access does not modify any rms file information (planned for the future if I remember right)&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 20:51:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599935#M70193</guid>
      <dc:creator>Eberhard Wacker</dc:creator>
      <dc:date>2005-08-09T20:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599936#M70194</link>
      <description>Arlene,&lt;BR /&gt;&lt;BR /&gt;  This is probably a subtlety in the way you're specifying the set of files to be backed up. Consider:&lt;BR /&gt;&lt;BR /&gt;$ BACKUP/RECORD disk:[*...]*.*;* saveset&lt;BR /&gt;&lt;BR /&gt;  and&lt;BR /&gt;&lt;BR /&gt;$ BACKUP/RECORD disk:[000000...]*.*;* saveset&lt;BR /&gt;&lt;BR /&gt;If you're using the first form, the directories at the top of the disk (in the [000000] directory) aren't explicitly being backed up. They are *implicitly* backed up by saving files below them, but information like ACLs will not be correctly saved or restored. More importantly, they aren't getting a backup date recorded. You can verify this with DIR/DATE=BACKUP. &lt;BR /&gt;&lt;BR /&gt;It's a *feature* of backup than /SINCE=BACKUP will consider the backup date of the file AND ALL CONTAINING DIRECTORIES, right up the directory tree! So the fact that the record date on the top level directory isn't set, or is out of the selection window will propagate to all files and subdirectories across the disk.&lt;BR /&gt;&lt;BR /&gt; This behaviour is deliberate and is to ensure that all changes to a disk get correctly restored, including things like directory renames. It was introduced in about V7.1(?) timeframe.&lt;BR /&gt;&lt;BR /&gt; Using the second form "[000000...]*.*;*", all directories on the disk are explicitly restored, so all information about the top level directories will be saved, AND backups dates will be written. Once you've done it once, you should find subsequent backups will select only the files that have been modified.&lt;BR /&gt;&lt;BR /&gt;  If you're happy that you have copies of all files, you can artificially set the backup dates for the top level directories with:&lt;BR /&gt;&lt;BR /&gt;$ BACKUP/RECORD disk:[000000]*.dir nl:nl/save&lt;BR /&gt;&lt;BR /&gt;BUT in future you should make sure your input specification is:&lt;BR /&gt;&lt;BR /&gt;disk:[000000...]*.*;*&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2005 20:55:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599936#M70194</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-08-09T20:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599937#M70195</link>
      <description>Arlene,&lt;BR /&gt;   you don't say here if you're using /MODIFIED in the command line?&lt;BR /&gt;&lt;BR /&gt;Without this, you won't get the files you require.&lt;BR /&gt;&lt;BR /&gt;Robert.</description>
      <pubDate>Wed, 10 Aug 2005 04:10:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599937#M70195</guid>
      <dc:creator>Robert Atkinson</dc:creator>
      <dc:date>2005-08-10T04:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599938#M70196</link>
      <description>"$ BACKUP/RECORD disk:[*...]*.*;* saveset&lt;BR /&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;$ BACKUP/RECORD disk:[000000...]*.*;* saveset&lt;BR /&gt;&lt;BR /&gt;If you're using the first form, the directories at the top of the disk (in the [000000] directory) aren't explicitly being backed up. They are *implicitly* backed up by saving files below them, but information like ACLs will not be correctly saved or restored. More importantly, they aren't getting a backup date recorded. You can verify this with DIR/DATE=BACKUP."&lt;BR /&gt;&lt;BR /&gt;But if you start the cycle with an image backup /record (since /since=backup is used for incrementals), the backup date is set.&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Aug 2005 11:38:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599938#M70196</guid>
      <dc:creator>David Jones_21</dc:creator>
      <dc:date>2005-08-10T11:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599939#M70197</link>
      <description>&amp;gt;But if you start the cycle with &lt;BR /&gt;&amp;gt;an image backup /record (since &lt;BR /&gt;&amp;gt;/since=backup is used for &lt;BR /&gt;&amp;gt;incrementals), the backup date is set.&lt;BR /&gt;&lt;BR /&gt;  True, but the point is&lt;BR /&gt;&lt;BR /&gt;[*...]&lt;BR /&gt;&lt;BR /&gt;  will NOT include the top level directories in the BACKUP selection whereas&lt;BR /&gt;&lt;BR /&gt;[000000...]&lt;BR /&gt;&lt;BR /&gt;  does. As well as not writing the backup date, the former will miss any ACLs and protection changes to the top level directories.&lt;BR /&gt;&lt;BR /&gt;  Bottom line, if you want to make sure BACKUP does what you want when selecting files from the entire disk, you MUST specify the files as:&lt;BR /&gt;&lt;BR /&gt;[000000...]*.*;*&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Aug 2005 17:16:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599939#M70197</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2005-08-10T17:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599940#M70198</link>
      <description>Arlene,&lt;BR /&gt;welcome to vms forum.&lt;BR /&gt; &lt;BR /&gt;About your questions this is my own opinion:&lt;BR /&gt;- Qualifiers /SINCE=BACKUP/RECORD are good choice to make incremental backup also if backup read files have not been modified;&lt;BR /&gt;- AFAIK diskeeper and other product don't change backup date. Creation date is not modified by rms interface; modified date is automatically updated by rms on close; backup date is modified by backup and some other utility (e.g. DFU).&lt;BR /&gt;At low level (where diskeeper works), these date can be explicitily modified and I guess Diskeeper has not reason to make this.&lt;BR /&gt;- There are various FAQ about backup. You can read them here Arlene,&lt;BR /&gt;welcome to vms forum.&lt;BR /&gt; &lt;BR /&gt;About your questions this is my own opinion:&lt;BR /&gt;- Qualifiers /SINCE=BACKUP/RECORD are good choice to make incremental backup also if backup read files have not been modified;&lt;BR /&gt;- AFAIK diskeeper and other product don't change backup date; don't forget /SINCE=BACKUP/RECORD selects file&lt;BR /&gt;selecting backup.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Aug 2005 02:07:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599940#M70198</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-11T02:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599941#M70199</link>
      <description>Thanks for all your help with this.  We tried the [000000...] in our backups and that was the problem.  We are now getting the files we wanted in our since=backup.  Thanks again!</description>
      <pubDate>Tue, 16 Aug 2005 16:41:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599941#M70199</guid>
      <dc:creator>Arlene Strauss</dc:creator>
      <dc:date>2005-08-16T16:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Backup utility</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599942#M70200</link>
      <description>Arlene,&lt;BR /&gt;you can thank and express your satisfation assigning some points.&lt;BR /&gt; &lt;BR /&gt;Antonio Vigliotti&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Aug 2005 02:15:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/backup-utility/m-p/3599942#M70200</guid>
      <dc:creator>Antoniov.</dc:creator>
      <dc:date>2005-08-17T02:15:02Z</dc:date>
    </item>
  </channel>
</rss>

