<?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: Logical Names nesting in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112495#M25698</link>
    <description>Thanks Kalle, but I (think, maybe I'm wrong) don't need concealed logical names. Please tell me if I'm wrong with this: All I need is a three LN's chain...</description>
    <pubDate>Fri, 06 Jun 2008 06:48:56 GMT</pubDate>
    <dc:creator>jordi sueiro</dc:creator>
    <dc:date>2008-06-06T06:48:56Z</dc:date>
    <item>
      <title>Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112487#M25690</link>
      <description>&lt;!--!*#--&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;* I have this system:&lt;BR /&gt;OpenVMS V7.3-2  on node SEGRI2   5-JUN-2008 13:24:09.71  Uptime  295 22:36:57&lt;BR /&gt;&lt;BR /&gt;* with (among others) this disk:&lt;BR /&gt;$ sh dev DISK$USER_D&lt;BR /&gt;Device                  Device           Error    Volume         Free  Trans Mnt&lt;BR /&gt; Name                   Status           Count     Label        Blocks Count Cnt&lt;BR /&gt;$1$DGA422:    (XXXXXX)  Mounted              0  USER_D        22077916     1   1&lt;BR /&gt;&lt;BR /&gt;* and its associated logical name:&lt;BR /&gt;$ sh log/ful DISK$USER_D&lt;BR /&gt;   "DISK$USER_D" [exec] = "$1$DGA422:" [concealed,terminal] (LNM$SYSTEM_TABLE)&lt;BR /&gt;&lt;BR /&gt;* Now, I try to do this (define nested logicals):&lt;BR /&gt;$ def/exec/tra DK$1 DISK$USER_D:[USER26.]&lt;BR /&gt;$ def/exec/tra DK$2 DK$1:[cep.]&lt;BR /&gt;&lt;BR /&gt;* That's the way they are:&lt;BR /&gt;$ sh log dk$%/ful&lt;BR /&gt;  "DK$1" [exec] = "DISK$USER_D:[USER26.]"&lt;BR /&gt;  "DK$2" [exec] = "DK$1:[CEP.]"&lt;BR /&gt;&lt;BR /&gt;* But if I try using them, I get errors!:&lt;BR /&gt;$ dir DK$2:[000000]&lt;BR /&gt;%DIRECT-E-OPENIN, error opening DK$2:[000000] as input&lt;BR /&gt;-RMS-F-DIR, error in directory name&lt;BR /&gt;&lt;BR /&gt;* unless I try the first-level nested one:&lt;BR /&gt;$ dir DK$1:[000000]&lt;BR /&gt;&lt;BR /&gt;Directory DISK$USER_D:[USER26.][000000]&lt;BR /&gt;&lt;BR /&gt;CEP.DIR;1           PACBD.DIR;1         SD_AXP.DIR;1&lt;BR /&gt;&lt;BR /&gt;Total of 3 files.&lt;BR /&gt;-------------------------------------------------------------&lt;BR /&gt;* Let's try concealing:&lt;BR /&gt;$ def/exec/tra=(concealed) DK$1 DISK$USER_D:[USER26.]&lt;BR /&gt;$ def/exec/tra=(concealed) DK$2 DK$1:[cep.]&lt;BR /&gt;&lt;BR /&gt;* That's the way they are:&lt;BR /&gt;$ sh log dk$%/ful&lt;BR /&gt;  "DISK$1" [exec] = "DISK$USER_D:[USER26.]" [concealed]&lt;BR /&gt;  "DISK$2" [exec] = "DISK$1:[CEP.]" [concealed]&lt;BR /&gt;&lt;BR /&gt;* And just the same results:&lt;BR /&gt;$ dir DK$2:[000000]&lt;BR /&gt;%DIRECT-E-OPENIN, error opening DK$2:[000000] as input&lt;BR /&gt;-RMS-F-DEV, error in device name or inappropriate device type for operation&lt;BR /&gt;$ dir DK$1:[000000]&lt;BR /&gt;&lt;BR /&gt;Directory DK$1:[000000]&lt;BR /&gt;&lt;BR /&gt;CEP.DIR;1           PACBD.DIR;1         SD_AXP.DIR;1&lt;BR /&gt;&lt;BR /&gt;Total of 3 files.&lt;BR /&gt;-------------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;Can anyone help me? Thanks in advance!</description>
      <pubDate>Thu, 05 Jun 2008 10:44:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112487#M25690</guid>
      <dc:creator>jordi sueiro</dc:creator>
      <dc:date>2008-06-05T10:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112488#M25691</link>
      <description>Jordi,&lt;BR /&gt;&lt;BR /&gt;According to the documentation, _CONCEALED DEVICE_ logicals cannot be nested.&lt;BR /&gt;&lt;BR /&gt;In practice, it is (just a little) less strict:&lt;BR /&gt;&lt;BR /&gt;$ Define/trans=conc DISK1 $1$DGA422:&lt;BR /&gt;$ Define/trans=conc rooted disk1:[root.]&lt;BR /&gt;&lt;BR /&gt;(assume ROOT.DIR does exist)&lt;BR /&gt;$ Dir rooted:[000000]&lt;BR /&gt;&lt;BR /&gt;Directory ROOTED &lt;BR /&gt;(etc)&lt;BR /&gt;&lt;BR /&gt;But the definition of the device part of a concealed device can NOT itself contain, directly nor indirectly, a DIRECTORY part.&lt;BR /&gt;&lt;BR /&gt;(much as I have regretted this myself in the past!)&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Jun 2008 11:01:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112488#M25691</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2008-06-05T11:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112489#M25692</link>
      <description>Hello&lt;BR /&gt;&lt;BR /&gt;When you define a concealed, you have a string .][ in your device definition.&lt;BR /&gt;&lt;BR /&gt;You can have this string only once in a device definition.&lt;BR /&gt;&lt;BR /&gt;So you can't do a concealed of concealed.&lt;BR /&gt;&lt;BR /&gt;If you search on ITRC, you will find a good number of posts on that subject.</description>
      <pubDate>Thu, 05 Jun 2008 11:04:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112489#M25692</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2008-06-05T11:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112490#M25693</link>
      <description>&lt;A href="http://64.223.189.234/node/881" target="_blank"&gt;http://64.223.189.234/node/881&lt;/A&gt;</description>
      <pubDate>Thu, 05 Jun 2008 16:26:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112490#M25693</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2008-06-05T16:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112491#M25694</link>
      <description>&lt;BR /&gt;&amp;gt;(much as I have regretted this myself in&lt;BR /&gt;&amp;gt;the past!)&lt;BR /&gt;&lt;BR /&gt;  Allowing nesting of logical names concealed devices might seem attractive, but it results in an explosion of complexity (consider multiple nestings). Were concealed devices implemented differently, it might have been feasible, but we're stuck with the historical separation of device and directory, which makes nesting a somewhat intractable problem. (the unix file specification model, where there is no distinction between device, directory and file is much more flexible and often easier to deal with, but we're stuck with what we've got)&lt;BR /&gt;&lt;BR /&gt;  What makes things worse is, there are some circumstances where nesting apparently "works", but, as documented, it's not guaranteed.&lt;BR /&gt;&lt;BR /&gt;  The attachment is a command procedure to define a concealed logical name to a specified directory which resolves all logical names and file specification peculiarities. &lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;$ @DEFINE_CONCEALED MYLOGIN SYS$LOGIN /JOB&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Jun 2008 20:34:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112491#M25694</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2008-06-05T20:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112492#M25695</link>
      <description>&lt;!--!*#--&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;First of all: thanks to everyone for their answers.&lt;BR /&gt;Second, surely I was not good enough at explaining my needs, maybe -sure!- there's something I don't -still- understand in the "Logical Names World". It was my fault, and I apologize. So I'll try again:&lt;BR /&gt;I would like to get something like that (don't mind about the "Directory DISK$U..." header; all I want is the files list!):&lt;BR /&gt;$ dir DISK$USER_D:[USER26.CEP]&lt;BR /&gt;&lt;BR /&gt;Directory DISK$USER_D:[USER26.CEP]&lt;BR /&gt;&lt;BR /&gt;USUARI.DIR;1&lt;BR /&gt;&lt;BR /&gt;Total of 1 file.&lt;BR /&gt;when I issue:&lt;BR /&gt;$ dir DK$2:[000000]&lt;BR /&gt;%DIRECT-E-OPENIN, error opening DK$2:[000000] as input&lt;BR /&gt;-RMS-F-DIR, error in directory name&lt;BR /&gt;&lt;BR /&gt;That's why I've been trying with concealing and not concealing the logical names involved. I don't care if I get something like:&lt;BR /&gt;$ dir DK$2:[000000]&lt;BR /&gt;&lt;BR /&gt;Directory $1$DGA422:[USER26.CEP]&lt;BR /&gt;&lt;BR /&gt;USUARI.DIR;1&lt;BR /&gt;&lt;BR /&gt;Total of 1 file.&lt;BR /&gt;&lt;BR /&gt;My question is: is there a way to get the above result (other than assigning disk$2 to the "full" path)? Please note that I'm trying to use logical names to it's "maximum" extent (I'm moving my old system to a new one, trying to minimize the changes in disk assigning; my new system has bigger disks, so I put a few old ones in just one new -a directory for each old disk).&lt;BR /&gt;&lt;BR /&gt;I hope this clarifies my "problem". Please feel free to ask any further data you may need. &lt;BR /&gt;Thank you again&lt;BR /&gt;P.S. I've tried also this (DEconcealing physical device logical name):&lt;BR /&gt;$ sh log dk$%,DISK$USER_D/ful&lt;BR /&gt;&lt;BR /&gt;(LNM$PROCESS_TABLE)     [kernel]&lt;BR /&gt;                        [no protection information]&lt;BR /&gt;&lt;BR /&gt;(LNM$JOB_816601C0)      [kernel]  [shareable]  [Quota=(14232,15000)]&lt;BR /&gt;                        [Protection=(RWCD,RWCD,,)]  [Owner=[SYSMGR,SYSTEM]]&lt;BR /&gt;&lt;BR /&gt;(LNM$GROUP_000001)      [kernel]  [shareable,group]&lt;BR /&gt;                        [Protection=(RWCD,R,R,)]  [Owner=[SYSMGR,*]]&lt;BR /&gt;&lt;BR /&gt;(LNM$SYSTEM_TABLE)      [kernel]  [shareable,system]&lt;BR /&gt;                        [Protection=(RWC,RWC,R,R)]  [Owner=[SYSMGR,SYSTEM]]&lt;BR /&gt;&lt;BR /&gt;  "DISK$USER_D" [exec] = "$1$DGA422:" [terminal]&lt;BR /&gt;  "DK$1" [exec] = "DISK$USER_D:[USER26.]"&lt;BR /&gt;  "DK$2" [exec] = "DK$1:[CEP.]"&lt;BR /&gt;&lt;BR /&gt;(LNM$SYSCLUSTER_TABLE)  [kernel]  [shareable,system]&lt;BR /&gt;                        [Protection=(RWC,RWC,R,R)]  [Owner=[SYSMGR,SYSTEM]]&lt;BR /&gt;&lt;BR /&gt;(DECW$LOGICAL_NAMES)    [exec]  [shareable]&lt;BR /&gt;                        [Protection=(RWCD,RWCD,R,R)]  [Owner=[SYSMGR,SYSTEM]]&lt;BR /&gt;SEGRI2&amp;gt; dir DK$2:[000000]&lt;BR /&gt;%DIRECT-E-OPENIN, error opening DK$2:[000000] as input&lt;BR /&gt;-RMS-F-DIR, error in directory name&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Jun 2008 06:23:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112492#M25695</guid>
      <dc:creator>jordi sueiro</dc:creator>
      <dc:date>2008-06-06T06:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112493#M25696</link>
      <description>It looks like the definition of DK$2 is missing the concealed attribute:&lt;BR /&gt;&lt;BR /&gt;$ define dk$2 /exec/Sys/translation=concea DISK$USER_D:[USER26.CEP.]&lt;BR /&gt;&lt;BR /&gt;You can't defined concealed logical names using concealed logical names (that's why John provides his DCL routine).&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Fri, 06 Jun 2008 06:30:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112493#M25696</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2008-06-06T06:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112494#M25697</link>
      <description>Jordi,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;Please note that I'm trying to use logical names to it's "maximum" extent &lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;VERY good! More people should do that!&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;is there a way to get the above result (other than assigning disk$2 to the "full" path)? &lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;The way _I_ would tackle this:&lt;BR /&gt;&lt;BR /&gt;In the ONE procedure clusterwide that defines fysical devices, like disks, tapes, ,,,&lt;BR /&gt;&lt;BR /&gt;$ DEFINE /SYSTEM/EXEC DISKnn $1$DGA422: /trans=conc&lt;BR /&gt;&lt;BR /&gt;In the ONE procedure clusterwide that defines all (real &amp;amp; potential) concealed devices&lt;BR /&gt;&lt;BR /&gt;$ DEFINE /system/exec CEP_ROOT DISKnn:[USER26.CEP.]/trans=conc&lt;BR /&gt;&lt;BR /&gt;Note:  after these two bootstrap procedures (MOUNT step in between) have been run, _NO_ procedure should EVER reference Fysical devices, NOR disks anymore (BACKUP excepted).&lt;BR /&gt;&lt;BR /&gt;In the initialisition procedure for application CEP:&lt;BR /&gt;&lt;BR /&gt;$ define [/table] [/mode] USUARI CEP_ROOT:[USUARI]&lt;BR /&gt;&lt;BR /&gt;ANY references now should be through either CEP_ROOT or USUARI.&lt;BR /&gt;&lt;BR /&gt;$ DIR CEP_ROOT:[000000]&lt;BR /&gt;&lt;BR /&gt;USUARI.DIR;1&lt;BR /&gt;&lt;BR /&gt;$ DIR USUARI:&lt;BR /&gt;&lt;BR /&gt;CEP_ROOT:[USUARI]&lt;BR /&gt;&lt;BR /&gt;&lt;ANY files="" in="" that="" dir=""&gt;&lt;BR /&gt;&lt;BR /&gt;--- Many ways leading to Rome, but this schema has helped me/us tremendously for over 20 years now. It has been deployed in dozens of sites, expecially in the timeframe that I was involved in rolling out turn-key applications.&lt;BR /&gt;It also was the basis for our 11-year-uptime cluster.&lt;BR /&gt;&lt;BR /&gt;Success!&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;/ANY&gt;</description>
      <pubDate>Fri, 06 Jun 2008 06:45:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112494#M25697</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2008-06-06T06:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112495#M25698</link>
      <description>Thanks Kalle, but I (think, maybe I'm wrong) don't need concealed logical names. Please tell me if I'm wrong with this: All I need is a three LN's chain...</description>
      <pubDate>Fri, 06 Jun 2008 06:48:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112495#M25698</guid>
      <dc:creator>jordi sueiro</dc:creator>
      <dc:date>2008-06-06T06:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112496#M25699</link>
      <description>Thanks Jan, but I think this is not what I'm asking for. I want three (or more) nested logicals; is this possible with Open VMS?&lt;BR /&gt;P.S. The schema you pointed out is the same (good one) we've been using for 19 years, but I don't want the easy way... although maybe that's the only one...</description>
      <pubDate>Fri, 06 Jun 2008 07:05:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112496#M25699</guid>
      <dc:creator>jordi sueiro</dc:creator>
      <dc:date>2008-06-06T07:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112497#M25700</link>
      <description>Jordi,&lt;BR /&gt;&lt;BR /&gt;OK, "nested logicals".&lt;BR /&gt;&lt;BR /&gt;As in "each step chaining one directory deeper"   -- NO way, see the response by John G&lt;BR /&gt;&lt;BR /&gt;As in: " One logical has a tranlation which is a LNM which has ... &lt;ETC&gt;" &amp;gt;  Yes, up to 16 levels of translation (level 16 is the last translated, anything it references then MUST be the factual, fysical object).&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;DISKnn = $1$DGAmmm   (concealed, cluster table)&lt;BR /&gt;&lt;BR /&gt;APP_Vx_y_ROOT = DISKnn:[APP_Vx_y.] (conc, cluster)&lt;BR /&gt;&lt;BR /&gt;( x_y present 3 times, with varying x and/or y)   (allows for simultanious different versions)&lt;BR /&gt;&lt;BR /&gt;APP_client_DATA_ROOT = DISKpp:[APP_client_DATA.] (conc, cluster table)&lt;BR /&gt;&lt;BR /&gt;(varying clients)&lt;BR /&gt;&lt;BR /&gt;APP_DATA_ROOT = APP_client_DATA_ROOT: (conc, APP_Vx_y_client table )&lt;BR /&gt; &lt;BR /&gt;APP_ROOT = APP_Vx_y_ROOT: (concealed, APP_Vx_y_client  table )&lt;BR /&gt;&lt;BR /&gt;Now, any directory LNM can again be defined in de Syetem or Cluster table.&lt;BR /&gt;&lt;BR /&gt;When deploying turm=key systems, we had EACH delivered system, and all patches theroff, on tape. Total about 60 - 70 times our total disk capacity; but when needed any environment could simply be restored to any disk or disks, as long as the total online desire was below online capacity.&lt;BR /&gt;&lt;BR /&gt;Most of our TOP root definitions (containing the version or client ID) were NOT to DISKnn, but to TAPEpppp. Upon restore the definition was made current; after modification the version ID was updated, and that environment moved to tape again.&lt;BR /&gt;&lt;BR /&gt;This was fully operational in the late 1980's, and still when I left there by the end of 1994.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/ETC&gt;</description>
      <pubDate>Fri, 06 Jun 2008 07:55:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112497#M25700</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2008-06-06T07:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112498#M25701</link>
      <description>Hello, and thanks to everybody.&lt;BR /&gt;&lt;BR /&gt;I've finally "seen the light". It's all about the number of roots ([xxx.]) in a file specification:&lt;BR /&gt;&lt;BR /&gt;node::device:[root.][directory]filename.type;version&lt;BR /&gt;&lt;BR /&gt;We're allowed to use one root only!</description>
      <pubDate>Fri, 06 Jun 2008 09:55:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112498#M25701</guid>
      <dc:creator>jordi sueiro</dc:creator>
      <dc:date>2008-06-06T09:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Names nesting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112499#M25702</link>
      <description>DISCLAIMER: this was my first thread, so please forgive any unpoliteness may I have shown here.</description>
      <pubDate>Fri, 06 Jun 2008 11:40:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/logical-names-nesting/m-p/5112499#M25702</guid>
      <dc:creator>jordi sueiro</dc:creator>
      <dc:date>2008-06-06T11:40:07Z</dc:date>
    </item>
  </channel>
</rss>

