<?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: VxFS defragmentation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860301#M396352</link>
    <description>fsadm_vxfs that comes with Base VERITAS volume Manager cannot do defragmentation.&lt;BR /&gt;&lt;BR /&gt;You need to purchase and install a product called "Online JFS". &lt;BR /&gt;&lt;BR /&gt;Online JFS allows you to&lt;BR /&gt;1) Dynamically reduce/extend the filesystem&lt;BR /&gt;2) defragment the filesystems online&lt;BR /&gt;3) Create a snapshot of the filesystem&lt;BR /&gt;&lt;BR /&gt;Which OE did you install ? - If you have installed Mission Critical/Enterprise OE, you might already have Online JFS.&lt;BR /&gt;&lt;BR /&gt;# swlist -l file OnlineJFS&lt;BR /&gt;&lt;BR /&gt;IF yes then you can &lt;BR /&gt;&lt;BR /&gt;# fsadm -F vxfs -D -E -d -e /&lt;MOUNTPOINT&gt;&lt;BR /&gt;&lt;BR /&gt;The above command will defragment the filesystem for you.&lt;BR /&gt;&lt;BR /&gt;-- Sundar.&lt;/MOUNTPOINT&gt;</description>
    <pubDate>Thu, 09 Sep 2004 10:43:28 GMT</pubDate>
    <dc:creator>Sundar_7</dc:creator>
    <dc:date>2004-09-09T10:43:28Z</dc:date>
    <item>
      <title>VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860298#M396349</link>
      <description>Hi everyone,&lt;BR /&gt;&lt;BR /&gt;I am running 11.11 on a L1000 machine which has 2 disks, 1 for operating system and supporting software, the other for application development etc.&lt;BR /&gt;&lt;BR /&gt;The OS disk hardly changes, but the AppDev disk has 100's of updates/creates/deletes per week. I have not bothered with trying to tune this disk's performance as yet, and have to admit to being new to this area of HP-UX Sys Adm. &lt;BR /&gt;&lt;BR /&gt;So, I was hoping that the kind people who frequent this forum would provide me with an explicit recipe to defragmenting (if necessary) this disk, and give any other tuning tips as you deem fit. I hope I have supplied enough detail, if not let me know and I shal try to answer any questions as necessary. &lt;BR /&gt;&lt;BR /&gt;The research I have done so far seems to indicate that I need to use Veritas software (fsadm_vxfs, etc), and this is what I find under swlist &lt;BR /&gt;"Base VERITAS Volume Manager 3.2 for HP-UX"&lt;BR /&gt;&lt;BR /&gt;Is this the software being referred to?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for your detailed responses... assume I know very little on this subject.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Kevin</description>
      <pubDate>Thu, 09 Sep 2004 10:34:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860298#M396349</guid>
      <dc:creator>Kevin Bingham</dc:creator>
      <dc:date>2004-09-09T10:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860299#M396350</link>
      <description>Kevin,&lt;BR /&gt;&lt;BR /&gt;I routinely (via cron) defrag all my file systems using the following little script:&lt;BR /&gt;&lt;BR /&gt;for i in `bdf -l |grep -v Filesystem |awk '{ print $6 }'`&lt;BR /&gt;do&lt;BR /&gt;if [ $i != "/stand" ]; then&lt;BR /&gt;   echo "Re-Org'ing " $i&lt;BR /&gt;   fsadm -F vxfs -d -D -e -E $i&lt;BR /&gt;fi&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I can't say that it makes a huge difference but it certainly doesn't seem to hurt.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 09 Sep 2004 10:41:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860299#M396350</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-09-09T10:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860300#M396351</link>
      <description>With just one disk for application, you have a very little to do. What application is this?? Depending on the application and the data it accesses, it is going to be difficult to know which data is accessed most and which least.&lt;BR /&gt;&lt;BR /&gt;The defragmentation can be done with fsadm -d ad -e options. read the man pages of vxfs_fsadm. If you do not have OnlineJFS(swlist -l product OnlineJFS), you will have to unmount the FS and do the defragmentation work. But to work it, you should have some free space on the FS.&lt;BR /&gt;&lt;BR /&gt;A better defragmentation would be doing a full cold backup and restore.&lt;BR /&gt;&lt;BR /&gt;Stop all applications accessing the FS.&lt;BR /&gt;Back it up.&lt;BR /&gt;newfs on the FS and restore.&lt;BR /&gt;Start the application.&lt;BR /&gt;&lt;BR /&gt;Also you may want to look at your buffer cache setting.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Thu, 09 Sep 2004 10:42:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860300#M396351</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-09-09T10:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860301#M396352</link>
      <description>fsadm_vxfs that comes with Base VERITAS volume Manager cannot do defragmentation.&lt;BR /&gt;&lt;BR /&gt;You need to purchase and install a product called "Online JFS". &lt;BR /&gt;&lt;BR /&gt;Online JFS allows you to&lt;BR /&gt;1) Dynamically reduce/extend the filesystem&lt;BR /&gt;2) defragment the filesystems online&lt;BR /&gt;3) Create a snapshot of the filesystem&lt;BR /&gt;&lt;BR /&gt;Which OE did you install ? - If you have installed Mission Critical/Enterprise OE, you might already have Online JFS.&lt;BR /&gt;&lt;BR /&gt;# swlist -l file OnlineJFS&lt;BR /&gt;&lt;BR /&gt;IF yes then you can &lt;BR /&gt;&lt;BR /&gt;# fsadm -F vxfs -D -E -d -e /&lt;MOUNTPOINT&gt;&lt;BR /&gt;&lt;BR /&gt;The above command will defragment the filesystem for you.&lt;BR /&gt;&lt;BR /&gt;-- Sundar.&lt;/MOUNTPOINT&gt;</description>
      <pubDate>Thu, 09 Sep 2004 10:43:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860301#M396352</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-09-09T10:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860302#M396353</link>
      <description>Thanks, that looks very promising... When I run fsadm, on one of the filesystems, i get the following output:&lt;BR /&gt;&lt;BR /&gt;{root} /&amp;gt; fsadm -F vxfs -d -D -e -E /apps2&lt;BR /&gt;fsadm: You don't have a license to run this program&lt;BR /&gt;{root} /&amp;gt;&lt;BR /&gt;&lt;BR /&gt;I am guessing this means installing something... any tips before I start digging?</description>
      <pubDate>Thu, 09 Sep 2004 10:45:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860302#M396353</guid>
      <dc:creator>Kevin Bingham</dc:creator>
      <dc:date>2004-09-09T10:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860303#M396354</link>
      <description>This has nothing to do with VxVM but only pertains to fsadm -F vxfs. THe man pages for fsadm_vxfs should be all to need. Just invoke fsadm -F vxfs -d -e /fsmountpoint and you are good to go. This can be done while the filesystem is mounted.&lt;BR /&gt;&lt;BR /&gt;In general, don't expect big gains from running this. Vxfs handles fragmentation well and in the UNIX world many, many file changes per second is the norm. Any filesystem that could handle that would simply never make it to prime time. There are a few corner cases where defragging noticeably helps but most of the times any gains are difficult to measure and extremely difficult to perceive.&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Sep 2004 10:49:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860303#M396354</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-09-09T10:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860304#M396355</link>
      <description>Kevin,&lt;BR /&gt;&lt;BR /&gt;Yes - I missed that you only had the Base version.  In order to run de-frag at all, you need to purchase and install the Online version:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B3929CA" target="_blank"&gt;http://www.software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B3929CA&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 09 Sep 2004 10:50:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860304#M396355</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-09-09T10:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860305#M396356</link>
      <description>{root} /&amp;gt; swlist -l product OnlineJFS&lt;BR /&gt;# Initializing...&lt;BR /&gt;# Contacting target "hp2"...&lt;BR /&gt;ERROR:   Software "OnlineJFS" was not found on host "hp2:/".&lt;BR /&gt;{root} /&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Is there any other way to do the defrag without using fsadm/Veritas.&lt;BR /&gt;&lt;BR /&gt;Perhaps a little more background might help. We use the L1000 machine for porting work only. The software we develop is generated from a Model-Based development tool, and we generate the code for Win/Oracle, Win/MS-Sql, Unix/Oracle and MVS/DB2, all of which are automatically compiled and linked as part of our development process. So we seldon log on to the L1000, except for testing our software, most of which happens on the Win/Oracle platform... Recently, we have noticed that the compiles and links of our Unix/Oracle code is taking longer than it used to, and I figured that it is probably down to the HD needing some TLC, hence my posting...&lt;BR /&gt;&lt;BR /&gt;We have a Dev Partner relationship with HP since our software is certified to run on HP h/w, and as such, could possibly get Veritas, but at present it does not seem that we have it.&lt;BR /&gt;&lt;BR /&gt;Anyone who is interested (curious) in our software can look at our website (&lt;A href="http://www.iet.co.uk)" target="_blank"&gt;www.iet.co.uk)&lt;/A&gt;</description>
      <pubDate>Thu, 09 Sep 2004 10:53:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860305#M396356</guid>
      <dc:creator>Kevin Bingham</dc:creator>
      <dc:date>2004-09-09T10:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860306#M396357</link>
      <description>Also, since this machine is only used for porting work, it has no Tape Drive and does not get backed up, so backing up and then doing a "newfs" isn't really an option I want to follow right now... thanks anyway.</description>
      <pubDate>Thu, 09 Sep 2004 10:55:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860306#M396357</guid>
      <dc:creator>Kevin Bingham</dc:creator>
      <dc:date>2004-09-09T10:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860307#M396358</link>
      <description>I dont believe there is any other way out to defragment the filesystem (not that I am aware of :-) , except installing OnlineJFS.</description>
      <pubDate>Thu, 09 Sep 2004 10:59:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860307#M396358</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-09-09T10:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860308#M396359</link>
      <description>Hi Kevin,&lt;BR /&gt;&lt;BR /&gt;Doesn't look like you have OnlineJFS license on the box to do the defrag of the filesystem. You need to have onlineJFS on the system. OnlineJFS is a $$ product and is sold seperately.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;regds&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Sep 2004 11:02:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860308#M396359</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2004-09-09T11:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860309#M396360</link>
      <description>I may have found OnlineJFS on the bundle of CD's that came with the machine... stand by...</description>
      <pubDate>Thu, 09 Sep 2004 11:08:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860309#M396360</guid>
      <dc:creator>Kevin Bingham</dc:creator>
      <dc:date>2004-09-09T11:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860310#M396361</link>
      <description>Kevin,&lt;BR /&gt;&lt;BR /&gt;I can pretty much guarantee that Online JFS is on the CDs, but you'll need a codeword to unlock and install it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 09 Sep 2004 11:12:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860310#M396361</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-09-09T11:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860311#M396362</link>
      <description>Well, I have managed to install OnlineJFS, so now I an running the fsadm command that everyone suggested I try:&lt;BR /&gt;&lt;BR /&gt;Here is the output so far, does this look badly fragmented, how long should it take to run?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;{root} /homeroot&amp;gt; swlist -l product OnlineJFS&lt;BR /&gt;# Initializing...&lt;BR /&gt;# Contacting target "hp2"...&lt;BR /&gt;#&lt;BR /&gt;# Target:  hp2:/&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;  OnlineJFS             B.11.11        Online features of the VxFS File System&lt;BR /&gt;{root} /homeroot&amp;gt; fsadm -F vxfs -d -D -e -E /apps2&lt;BR /&gt;&lt;BR /&gt;  Directory Fragmentation Report&lt;BR /&gt;             Dirs        Total      Immed    Immeds   Dirs to   Blocks to&lt;BR /&gt;             Searched    Blocks     Dirs     to Add   Reduce    Reduce&lt;BR /&gt;  total          3863      2281      2895        28        46          66</description>
      <pubDate>Thu, 09 Sep 2004 11:19:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860311#M396362</guid>
      <dc:creator>Kevin Bingham</dc:creator>
      <dc:date>2004-09-09T11:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860312#M396363</link>
      <description>How much time it is supposed to take ? - the best possible answer is "it depends" &lt;BR /&gt;:-).&lt;BR /&gt;&lt;BR /&gt;It depends on the size of the filesystem, how fragmented it is, the amount of activity in the system etc.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Sep 2004 11:27:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860312#M396363</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-09-09T11:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860313#M396364</link>
      <description>Doesn't look to bad...&lt;BR /&gt;&lt;BR /&gt;I run the following weekly on my servers:&lt;BR /&gt;&lt;BR /&gt;cat /usr/local/bin/fsadm.defrag&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;# defrag all mounted file systems&lt;BR /&gt;LOG=/tmp/fsadm.defrag.log&lt;BR /&gt;if [ -f $LOG ]&lt;BR /&gt;then&lt;BR /&gt;        mv $LOG $LOG.old&lt;BR /&gt;fi&lt;BR /&gt;cat /dev/null &amp;gt; $LOG&lt;BR /&gt;&lt;BR /&gt;for i in `mount -l | grep -v stand |awk '{print $1}'`&lt;BR /&gt;do&lt;BR /&gt;echo "defraging " $i &amp;gt;&amp;gt; $LOG&lt;BR /&gt;fsadm -F vxfs -d -D -e -E $i &amp;gt;&amp;gt; $LOG&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Thu, 09 Sep 2004 11:28:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860313#M396364</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-09-09T11:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860314#M396365</link>
      <description>bdf output shows:&lt;BR /&gt;/dev/vg01/lvol1    9072640 7593111 1387626   85% /apps2&lt;BR /&gt;and this is the only *active* process on the machine, no users logged on...</description>
      <pubDate>Thu, 09 Sep 2004 11:29:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860314#M396365</guid>
      <dc:creator>Kevin Bingham</dc:creator>
      <dc:date>2004-09-09T11:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860315#M396366</link>
      <description>Kevin,&lt;BR /&gt;&lt;BR /&gt;It's probably too early to tell.  A look at the man page tells us "If the totals in the columns labeled "Dirs to Reduce" are substantial, a directory reorganization can improve performance of pathname resolution."&lt;BR /&gt;The examples show "Dirs to Reduce" in the 2500 to 3000 range, far above your 46.  This may run for a long time but I don't think you're going to see any substantial improvement.&lt;BR /&gt;&lt;BR /&gt;You might want to start looking at other performance metrics of this machine to see what is slowing it down.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 09 Sep 2004 11:30:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860315#M396366</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-09-09T11:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860316#M396367</link>
      <description>Ok, now that I have OnlineJFS and fsadm is running where else can I start looking for some perfomance improvements? Perhaps I should start a new thread for this one?</description>
      <pubDate>Thu, 09 Sep 2004 11:32:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860316#M396367</guid>
      <dc:creator>Kevin Bingham</dc:creator>
      <dc:date>2004-09-09T11:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: VxFS defragmentation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860317#M396368</link>
      <description>Probably a new thread would be best.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 09 Sep 2004 11:37:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vxfs-defragmentation/m-p/4860317#M396368</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2004-09-09T11:37:26Z</dc:date>
    </item>
  </channel>
</rss>

