<?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: Increasing SWAP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105414#M147649</link>
    <description>OK, you definitely are swapping.  I would *SERIOUSLY CONSIDER* adding more RAM.  Since you have 4GB of swap space, and you say you see it go up to 98%, I would consider adding at least 4GB of RAM, ideally I would add maybe 6GB to try to give a bit of breathing room.&lt;BR /&gt;&lt;BR /&gt;You, and your users, will probably see a performance increase when you do, since you won't swapping anymore. &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 29 Oct 2003 11:39:18 GMT</pubDate>
    <dc:creator>Patrick Wallek</dc:creator>
    <dc:date>2003-10-29T11:39:18Z</dc:date>
    <item>
      <title>Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105408#M147643</link>
      <description>Hi There,&lt;BR /&gt;&lt;BR /&gt;Were running an IA64 on  HPUX B.11.22 and I need to increase my swap file as I've seen it grow to 98% full.  How can I do this and still have the swap file contiguious.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Wed, 29 Oct 2003 11:28:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105408#M147643</guid>
      <dc:creator>Barry_10</dc:creator>
      <dc:date>2003-10-29T11:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105409#M147644</link>
      <description>There is no easy way to increase you primary swap and have it remain contiguous.&lt;BR /&gt;&lt;BR /&gt;The better way would be to create another LV to use as swap space.&lt;BR /&gt;&lt;BR /&gt;However, if you are using that much swap then you really need to add more RAM instead of adding more swap.  If you truly are paging out, then I'm your machine is performing rather poorly.&lt;BR /&gt;&lt;BR /&gt;If you could attach your 'swapinfo -tam' output so we can verify you usage that would be great.</description>
      <pubDate>Wed, 29 Oct 2003 11:30:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105409#M147644</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2003-10-29T11:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105410#M147645</link>
      <description>Hi Barry,&lt;BR /&gt; &lt;BR /&gt;Basically you can't extend the current swap. You'll never be able to keep it contiguous.&lt;BR /&gt;But what you CAN do is add secondary swap on another disk device &amp;amp; that'll work just fine.&lt;BR /&gt;You'll need to check your maxswapchunks kernel parm - it'll probably have to be increased to accomodate the extra swap. This will require a reboot.&lt;BR /&gt; &lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Wed, 29 Oct 2003 11:31:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105410#M147645</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2003-10-29T11:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105411#M147646</link>
      <description>Have you considered adding secondary swap?&lt;BR /&gt;&lt;BR /&gt;Here is how if you want to:&lt;BR /&gt;&lt;BR /&gt;Adding secondary swap:&lt;BR /&gt;&lt;BR /&gt;USING LVM:&lt;BR /&gt;&lt;BR /&gt;1.)  pvcreate /dev/rdsk/cXtXdX (The disk that will be used for swap)&lt;BR /&gt;&lt;BR /&gt;2.)  vgcreate /dev/vgXX /dev/dsk/cXtXdX (Creating a volume group)&lt;BR /&gt;     or vgextend /dev/vg00 /dev/dsk/cXtXdX (to add the disk)&lt;BR /&gt;&lt;BR /&gt;3.)  lvcreate -L (size in mb) -C y -r n /dev/vgXX (Creating a logical&lt;BR /&gt;                                                   volume for swap)&lt;BR /&gt;&lt;BR /&gt;4.)  edit the fstab file ..ie /dev/vgXX/lvolX ... swap  pri=1 0&lt;BR /&gt;&lt;BR /&gt;5.)  swapon -a&lt;BR /&gt;&lt;BR /&gt;6.)  swapinfo -tam (should show new swap)&lt;BR /&gt;&lt;BR /&gt;To remove swap&lt;BR /&gt;&lt;BR /&gt;1.)  edit the fstab file -&amp;gt; remove the swap line&lt;BR /&gt;&lt;BR /&gt;2.)  reboot the system&lt;BR /&gt;&lt;BR /&gt;If you want this new swap to be dump as well, it must be in vg00 and then&lt;BR /&gt;run the command lvlnboot -d /dev/vg00/lvolX&lt;BR /&gt;&lt;BR /&gt;To check it -&amp;gt; lvlnboot -v&lt;BR /&gt;&lt;BR /&gt;USING WHOLE DISK PARTITION:&lt;BR /&gt;&lt;BR /&gt;1.)  edit the fstab file ..ie /dev/dsk/cXtXdX ... swap  pri=1 0&lt;BR /&gt;&lt;BR /&gt;2.)  swapon -a&lt;BR /&gt;&lt;BR /&gt;3.)  swapinfo -tam (should show new swap)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;&lt;BR /&gt;-Brian.</description>
      <pubDate>Wed, 29 Oct 2003 11:33:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105411#M147646</guid>
      <dc:creator>Brian Markus</dc:creator>
      <dc:date>2003-10-29T11:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105412#M147647</link>
      <description>If your swap is really 98% full, then you need more memory ASAP. That being said, you can't extend your primary swap (as you've said, it has to be contiguous), but you can add swap from another disk.&lt;BR /&gt;&lt;BR /&gt;Just create a new swap partition and activate it, easiest way to do this is with SAM -&amp;gt; Disks and Filesystems -&amp;gt; Swap.&lt;BR /&gt;&lt;BR /&gt;HTH.</description>
      <pubDate>Wed, 29 Oct 2003 11:33:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105412#M147647</guid>
      <dc:creator>Brian Bergstrand</dc:creator>
      <dc:date>2003-10-29T11:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105413#M147648</link>
      <description>Thanks for the prompt reply:&lt;BR /&gt;&lt;BR /&gt;Here is my 'swapinfo -tam'&lt;BR /&gt;&lt;BR /&gt;             Mb      Mb      Mb   PCT  START/      Mb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;dev        4096    1226    2870   30%       0       -    1  /dev/vg00/lvol2&lt;BR /&gt;reserve       -    2310   -2310&lt;BR /&gt;memory     1463     448    1015   31%&lt;BR /&gt;total      5559    3984    1575   72%       -       0    -&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Right now it's at about 30% but I've seen it increase to as high 98%, unfortunatley I can't recall what was happening at that time to increase swap to that point.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Oct 2003 11:34:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105413#M147648</guid>
      <dc:creator>Barry_10</dc:creator>
      <dc:date>2003-10-29T11:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105414#M147649</link>
      <description>OK, you definitely are swapping.  I would *SERIOUSLY CONSIDER* adding more RAM.  Since you have 4GB of swap space, and you say you see it go up to 98%, I would consider adding at least 4GB of RAM, ideally I would add maybe 6GB to try to give a bit of breathing room.&lt;BR /&gt;&lt;BR /&gt;You, and your users, will probably see a performance increase when you do, since you won't swapping anymore. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Oct 2003 11:39:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105414#M147649</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2003-10-29T11:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105415#M147650</link>
      <description>Okay I'm a little unclear on how adding memory is going to help.  Since if I add memory I have to add swap space anyways to match the memory size, is that correct?&lt;BR /&gt;&lt;BR /&gt;Barry</description>
      <pubDate>Wed, 29 Oct 2003 11:45:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105415#M147650</guid>
      <dc:creator>Barry_10</dc:creator>
      <dc:date>2003-10-29T11:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105416#M147651</link>
      <description>Adding a secondary, lower priority(higher number on swapinfo) swap area will alleviate peformance problems related to inadequate swap space.&lt;BR /&gt;&lt;BR /&gt;The general strategy now is the A. Clay Stephenson plan which involes a smaller primary swap and a larger secondary that only gets used when loads get high.&lt;BR /&gt;&lt;BR /&gt;As Patrick notes, swap is no substitute for adequate memory.  If you need to increase swap beyond twice memory, performance will suffer and thats a good indicator its time to get your hands on some RAM.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 29 Oct 2003 11:47:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105416#M147651</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-10-29T11:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105417#M147652</link>
      <description>Processes are being paged-out to your swap area because you have no free memory to allow other processes to run.  Ideally you should never see your %used on your swap rise above 0%.  &lt;BR /&gt;&lt;BR /&gt;If you add memory, that will give you more room for processes to run, without other processes having to be paged-out to disk first, thus making things run a whole lot faster.  &lt;BR /&gt;&lt;BR /&gt;Now, if you add more memory, you don't necessarily need to add more swap space.  If you set the kernel parameter swapmem_on to 1 then HP-UX will use 75% of your RAM as pseudo-swap, thus allowing processes to run and reserve their little piece of swap space without actually having to have a 1:1 ratio of available swap to RAM.  Having swapmem_on set to 1 will not impact the amount of RAM you have available for processes.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Oct 2003 11:51:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105417#M147652</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2003-10-29T11:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105418#M147653</link>
      <description>the adding of swap related to ram size is just a guideline. If you add ram, you'll actually need less swap space.&lt;BR /&gt;&lt;BR /&gt;However, you want swap at least as large as ram so that you can capture mem dumps, if necessary.&lt;BR /&gt;&lt;BR /&gt;In that ram is 1000 times as fast as disk access, it you're really paging out that much, more ram is the performance answer.&lt;BR /&gt;&lt;BR /&gt;also, if you ever really do run out of swap, things canget ugly ( swap mem off protects against this, but if on, some things just wont get done., = ugly)</description>
      <pubDate>Wed, 29 Oct 2003 11:53:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105418#M147653</guid>
      <dc:creator>doug mielke</dc:creator>
      <dc:date>2003-10-29T11:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105419#M147654</link>
      <description>Check out the HP-UX Kernel Tuning and Performance Guide by Stephen Ciullo.  He goes over SWAP in depth.   How much, why etc..&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/otsearch/getfile?id=/hpux/onlinedocs/os/11.0/tuningwp.html&amp;amp;searchterms=Ciullo%7cStephen&amp;amp;queryid=20031029-095623" target="_blank"&gt;http://docs.hp.com/cgi-bin/otsearch/getfile?id=/hpux/onlinedocs/os/11.0/tuningwp.html&amp;amp;searchterms=Ciullo%7cStephen&amp;amp;queryid=20031029-095623&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;By the way, if you have a support contract, I HIGHLY recommends having him check out your system.  You send him a few files; he sends you a report and BAMN!!  I thought our systems were tuned pretty well; the things he recommended boosted our performance by over 50% on some of our machines.&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;BR /&gt;&lt;BR /&gt;-Brian.&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Oct 2003 12:00:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105419#M147654</guid>
      <dc:creator>Brian Markus</dc:creator>
      <dc:date>2003-10-29T12:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105420#M147655</link>
      <description>Management says no budget for Memory.  So I guess I'll have to look at increasing swap via disk.&lt;BR /&gt;&lt;BR /&gt;B</description>
      <pubDate>Wed, 29 Oct 2003 12:02:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105420#M147655</guid>
      <dc:creator>Barry_10</dc:creator>
      <dc:date>2003-10-29T12:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105421#M147656</link>
      <description>How much RAM do you currently have?  HP recommends no more than 4 GB of SWAP no matter how much RAM you have.  Unless you have over 16GB, then you would never need more that 4GB of swap.</description>
      <pubDate>Wed, 29 Oct 2003 12:05:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105421#M147656</guid>
      <dc:creator>Joshua Scott</dc:creator>
      <dc:date>2003-10-29T12:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105422#M147657</link>
      <description>How much is having a machine that performs decently worth?&lt;BR /&gt;&lt;BR /&gt;If the budget it tight, have a look at Kingston memory.  It works just fine in HP machines and has a lifetime warranty.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.kingston.com" target="_blank"&gt;http://www.kingston.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Other companies also do 3rd party RAM for HP machines.  Crucial and Dataram come to mind.</description>
      <pubDate>Wed, 29 Oct 2003 12:10:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105422#M147657</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2003-10-29T12:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105423#M147658</link>
      <description>These IA Boxes currently have 2 gigs of memory.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Oct 2003 12:28:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105423#M147658</guid>
      <dc:creator>Barry_10</dc:creator>
      <dc:date>2003-10-29T12:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105424#M147659</link>
      <description>Hi Barry,&lt;BR /&gt; &lt;BR /&gt;You have to explain to mgmnt that if that swap usage ever reaches 100%, then the game's over &amp;amp; everything will grind to a halt.&lt;BR /&gt; &lt;BR /&gt;They basically have ONLY two choices:&lt;BR /&gt;1) Increase RAM&lt;BR /&gt;2) Decrease RAM demand&lt;BR /&gt; &lt;BR /&gt;What apps are you running? 2GB for anything serious is woefully short. If they can decrease the app's RAM demand - then you can limp along w/o adding RAM. But they *must* understand that when you're paging out the performance hit can be in the tens of thousands percent.&lt;BR /&gt; &lt;BR /&gt;My 2 cents,&lt;BR /&gt;Jeff</description>
      <pubDate>Wed, 29 Oct 2003 12:36:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105424#M147659</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2003-10-29T12:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105425#M147660</link>
      <description>If you can get a chance to bring down the server, you can extend swap if you take the following procedures.&lt;BR /&gt;&lt;BR /&gt;1) Put "#" in front of swap area in /etc/fstab file&lt;BR /&gt;3) reboot the system&lt;BR /&gt;4) remove swap file system&lt;BR /&gt;   # lvremove /dev/vg00/lvol2  &lt;BR /&gt;5) re-create swap file system&lt;BR /&gt;   # lvcreate -L xxxx /dev/vg00  &lt;BR /&gt;6) activate swap file system &lt;BR /&gt;   # swapon /dev/vg00/lvol2  &lt;BR /&gt;7) add swap file system into /etc/fstab&lt;BR /&gt;&lt;BR /&gt;For the best performance, you had better create device swap with one physical disk.&lt;BR /&gt;&lt;BR /&gt;1) Device Swap: &lt;BR /&gt;a. A disk area or logical volume that is used exclusively for swap. &lt;BR /&gt;b. Device swap is faster than file system swap.&lt;BR /&gt;c. When using the whole disk approach, you can either use an entire disk  for swap, or reserve space at the end of the disk after the file system by using the â  R option of newfs. For example, the following command creates a file system on a disk and reserves 200 MB for swap:&lt;BR /&gt;                &lt;BR /&gt;# newfs â  R 200 /dev/rdsk/c0t2d0&lt;BR /&gt;&lt;BR /&gt;When using LVM you create a separate logical volume for device swap. The following is an example of an lvcreate command used to create 200 MB swap logical volume:&lt;BR /&gt;&lt;BR /&gt;# lvcreate â  L 16 â  n myswap /dev/vg01&lt;BR /&gt;&lt;BR /&gt;1)Swap on a logical volume (device swap)&lt;BR /&gt;# lvcreate â  L 12 â  n myswap vg00&lt;BR /&gt;#swapon /dev/vg01/myswap&lt;BR /&gt;&lt;BR /&gt;2)Swap on a whole disk ( whole disk swap)&lt;BR /&gt;# swapon /dev/dsk/c0t2d0&lt;BR /&gt;&lt;BR /&gt;3)Swap on a file system&lt;BR /&gt;# swapon  -p 4</description>
      <pubDate>Wed, 29 Oct 2003 17:43:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105425#M147660</guid>
      <dc:creator>Brian Lee_4</dc:creator>
      <dc:date>2003-10-29T17:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing SWAP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105426#M147661</link>
      <description>You need to fix the paging problem.  It might not just be a hardware issue. It can be a  configuration issue.  &lt;BR /&gt;For example&lt;BR /&gt;Are you running ORACLE?&lt;BR /&gt;&lt;BR /&gt;Look at your at your SGA area. you might be able to reduce it.  I have seen some oracle parms set so hight that the cache hit rates were wonderful. The benifit was lost because the OS was paging.&lt;BR /&gt;&lt;BR /&gt;Check your tunable parameters to see if you can free up memory.&lt;BR /&gt; &lt;BR /&gt;Consider setting ulimits.  See if you have a program that is "leaking" memory&lt;BR /&gt;&lt;BR /&gt;Find out who your bad boys are&lt;BR /&gt;ps -fel   (check the SZ column)&lt;BR /&gt;then see what can be done to tune them.&lt;BR /&gt;&lt;BR /&gt;Regrading no money in the budget. If you don't fix this problem your company will loose money becuase of downtime and lost productivity.&lt;BR /&gt;&lt;BR /&gt;Good Luck&lt;BR /&gt;Rory</description>
      <pubDate>Wed, 29 Oct 2003 20:20:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/increasing-swap/m-p/3105426#M147661</guid>
      <dc:creator>Rory R Hammond</dc:creator>
      <dc:date>2003-10-29T20:20:55Z</dc:date>
    </item>
  </channel>
</rss>

