<?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 Using Memory to store Data in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631662#M760641</link>
    <description>Hello&lt;BR /&gt;I would like to ask:&lt;BR /&gt;in old days there was a function called RAMDRIVE where it was able to create a virtual drive in memory and access it. &lt;BR /&gt;Now I have an oracle with and I runn queries that they are using the TEMP tablespace/datafile. Is it possible to create a RAMDRIVE and mount the TEMP there?</description>
    <pubDate>Mon, 17 Dec 2001 19:08:53 GMT</pubDate>
    <dc:creator>George Nikoloudis_1</dc:creator>
    <dc:date>2001-12-17T19:08:53Z</dc:date>
    <item>
      <title>Using Memory to store Data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631662#M760641</link>
      <description>Hello&lt;BR /&gt;I would like to ask:&lt;BR /&gt;in old days there was a function called RAMDRIVE where it was able to create a virtual drive in memory and access it. &lt;BR /&gt;Now I have an oracle with and I runn queries that they are using the TEMP tablespace/datafile. Is it possible to create a RAMDRIVE and mount the TEMP there?</description>
      <pubDate>Mon, 17 Dec 2001 19:08:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631662#M760641</guid>
      <dc:creator>George Nikoloudis_1</dc:creator>
      <dc:date>2001-12-17T19:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using Memory to store Data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631663#M760642</link>
      <description>Hi George,&lt;BR /&gt;&lt;BR /&gt;I never tried but have been looking at this website since long time to see if I can try it instead of unsupported RAM disk by HP.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.jtlltd.com/ramdsk.html" target="_blank"&gt;http://www.jtlltd.com/ramdsk.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;They sell a product to store data to RAM instead to hard disk drive.&lt;BR /&gt;&lt;BR /&gt;If you have OnlineJFS you can also configure a file system with these options to make it like a RAMDisk.&lt;BR /&gt;&lt;BR /&gt;mount /dev/vgxx/lvxx -o tmplog,mincache=tmpcache,convosync=delay&lt;BR /&gt;/mount_point&lt;BR /&gt;&lt;BR /&gt;There is an unsupported way of adding a ramdisk. You need to add "ram" driver to your system file.&lt;BR /&gt;&lt;BR /&gt;#/usr/lbin/sysadm/system_prep -s /stand/system&lt;BR /&gt;#kmsystem -c y -S system ram&lt;BR /&gt;#mk_kernel -o /stand/vmunix&lt;BR /&gt;#kmupdate&lt;BR /&gt;#shutdown -r now&lt;BR /&gt;&lt;BR /&gt;Once the system is back up you need to create char and block devices for the ram disk.&lt;BR /&gt;&lt;BR /&gt;mknod /dev/rRAM c 9 minor_number&lt;BR /&gt;mknod /dev/RAM b 9 minor_number&lt;BR /&gt;newfs -F vxfs /dev/rRAM&lt;BR /&gt;mkdir -p /RAMDISK&lt;BR /&gt;mount /dev/RAM /RAMDISK&lt;BR /&gt;&lt;BR /&gt;Check out /usr/conf/sio/ram.h for more information on formatting the minor number.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Dec 2001 20:05:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631663#M760642</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-12-17T20:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Using Memory to store Data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631664#M760643</link>
      <description>Thanks a lot&lt;BR /&gt;One thing the unsupported verion of RAM Drive is it "recommended"?</description>
      <pubDate>Mon, 17 Dec 2001 20:26:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631664#M760643</guid>
      <dc:creator>George Nikoloudis_1</dc:creator>
      <dc:date>2001-12-17T20:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using Memory to store Data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631665#M760644</link>
      <description>Recommended?. It depends. The question comes from the fact that they are not to be used as stable storage as the data will not be preserved after reboot. They are best used for temporary file systems. I used it for oracle redo logs before but not using anymore now.And there are good "solid state" disks that can play like Ramdisks.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Mon, 17 Dec 2001 20:40:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631665#M760644</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-12-17T20:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using Memory to store Data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631666#M760645</link>
      <description>Also, be aware that if you do use HP's "unsupported" method for creating a RAM drive, and something happens that kills your system and you need support, you more than likely won't get it.&lt;BR /&gt;&lt;BR /&gt;"Unsupported" is use at your own risk, we're not responsible if you kill your system.</description>
      <pubDate>Mon, 17 Dec 2001 20:43:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631666#M760645</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2001-12-17T20:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using Memory to store Data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631667#M760646</link>
      <description>The link posted above that contains the jtlltd.com domain is a dead link.&lt;BR /&gt;Here is the updated link.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.ramdisc.com/ramdsk.html" target="_blank"&gt;http://www.ramdisc.com/ramdsk.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;John</description>
      <pubDate>Tue, 13 Feb 2007 21:48:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-memory-to-store-data/m-p/2631667#M760646</guid>
      <dc:creator>John Scheller</dc:creator>
      <dc:date>2007-02-13T21:48:58Z</dc:date>
    </item>
  </channel>
</rss>

