<?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 Multiple default directories for an ID in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676767#M18795</link>
    <description>I have a mixed alpha and itanium node cluster.  The alpha nodes are running 8.3 and the itanium nodes are 8.3 1h1.  The alpha nodes share a system disk and the itanium nodes share a different system disk but we also have a common disk that we run cluster wide stuff from.  &lt;BR /&gt;&lt;BR /&gt;I have a new need to have the default directory set in the authorize record changed depending on whether the ID is logging onto an Alpha or an Itanium node.  I am trying to avoid creating another application ID if I can avoid it.  The idea is to have the ID run a differnt login.com file depending on whether it is on an alpha node or an itanium node.&lt;BR /&gt;&lt;BR /&gt;I tried puting this commonad in the sylogin.com file on the alpha nodes:&lt;BR /&gt;&lt;BR /&gt;$ if f$extract(0,8,f$getjpi("","USERNAME")) .eqs. "ORACLE10"&lt;BR /&gt;$ then set default ora_appl:[oracle10]&lt;BR /&gt;$ ws ""&lt;BR /&gt;$ ws "Oracle10 default directory changed to ora_appl:[oracle10]&lt;BR /&gt;$ ws ""&lt;BR /&gt;$ endif&lt;BR /&gt;&lt;BR /&gt;But it is not working, as when I get a command prompt and do a show default it still shows what is set in the authorize record.&lt;BR /&gt;&lt;BR /&gt;Is there another way to accomplish this or am I going to have to set up and maintain a seperate account?&lt;BR /&gt;&lt;BR /&gt;Any help would be greatly appreciated.&lt;BR /&gt;&lt;BR /&gt;Greg</description>
    <pubDate>Wed, 18 Aug 2010 21:16:44 GMT</pubDate>
    <dc:creator>Gregory Pagan</dc:creator>
    <dc:date>2010-08-18T21:16:44Z</dc:date>
    <item>
      <title>Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676767#M18795</link>
      <description>I have a mixed alpha and itanium node cluster.  The alpha nodes are running 8.3 and the itanium nodes are 8.3 1h1.  The alpha nodes share a system disk and the itanium nodes share a different system disk but we also have a common disk that we run cluster wide stuff from.  &lt;BR /&gt;&lt;BR /&gt;I have a new need to have the default directory set in the authorize record changed depending on whether the ID is logging onto an Alpha or an Itanium node.  I am trying to avoid creating another application ID if I can avoid it.  The idea is to have the ID run a differnt login.com file depending on whether it is on an alpha node or an itanium node.&lt;BR /&gt;&lt;BR /&gt;I tried puting this commonad in the sylogin.com file on the alpha nodes:&lt;BR /&gt;&lt;BR /&gt;$ if f$extract(0,8,f$getjpi("","USERNAME")) .eqs. "ORACLE10"&lt;BR /&gt;$ then set default ora_appl:[oracle10]&lt;BR /&gt;$ ws ""&lt;BR /&gt;$ ws "Oracle10 default directory changed to ora_appl:[oracle10]&lt;BR /&gt;$ ws ""&lt;BR /&gt;$ endif&lt;BR /&gt;&lt;BR /&gt;But it is not working, as when I get a command prompt and do a show default it still shows what is set in the authorize record.&lt;BR /&gt;&lt;BR /&gt;Is there another way to accomplish this or am I going to have to set up and maintain a seperate account?&lt;BR /&gt;&lt;BR /&gt;Any help would be greatly appreciated.&lt;BR /&gt;&lt;BR /&gt;Greg</description>
      <pubDate>Wed, 18 Aug 2010 21:16:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676767#M18795</guid>
      <dc:creator>Gregory Pagan</dc:creator>
      <dc:date>2010-08-18T21:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676768#M18796</link>
      <description>Greg,&lt;BR /&gt;&lt;BR /&gt;  Trust me, this is NOT a good idea! You'll have all kinds of issues from stuff which expects one user to have ONE login directory. &lt;BR /&gt;&lt;BR /&gt;  Just one example, MAIL. Where it gets delivered will depend on which node it's received on, but the new mail count is kept in a cluster common area. Net result is your newmail count will NEVER be correct on any node. Perhaps a minor and trivial issue, but just illustrating the kinds of things that can happen.&lt;BR /&gt;&lt;BR /&gt;  If you really want to, it's fairly easy to setup. On each node create yourself a concealed device, like this:&lt;BR /&gt;&lt;BR /&gt;$ DEFINE/SYSTEM/EXEC USERS physdev:[USERDIR.]/TRANSLATION_ATTRIBUTES=(CONCEALED,TERMINAL)&lt;BR /&gt;&lt;BR /&gt;(note that physdev MUST be a physical device name, like $1$DGA123:). Make the device different on each node if you want. Add the definitions to SYLOGICALS.COM&lt;BR /&gt;&lt;BR /&gt;Now, define your UAF record with:&lt;BR /&gt;&lt;BR /&gt;/DEVICE=USERS: /DIRECTORY=[YOURUSER]&lt;BR /&gt;&lt;BR /&gt;So, SYS$LOGIN will be defined as USERS:[YOURUSER] which will map to different directories, depending on which node you login to. No need for any code in SYLOGIN or LOGIN.&lt;BR /&gt;&lt;BR /&gt;(though, I repeat, most of the time people want to ELIMINATE this kind of difference) &lt;BR /&gt;&lt;BR /&gt;If all you want to do is have a particular user SET DEFAULT to a different directory when they login to a particular node, I'd put it in the user's LOGIN.COM rather than SYLOGIN. Suppose your nodes are called ALPHA and IA64, try this:&lt;BR /&gt;&lt;BR /&gt;$ node=F$GETSYI("NODENAME")&lt;BR /&gt;$ 'node'def="SYS$LOGIN"&lt;BR /&gt;$ ALPHAdef="ora_appl:[oracle10]"&lt;BR /&gt;$ IA64def="SYS$LOGIN"&lt;BR /&gt;$ OTHERdef="somedev:[OTHER]"&lt;BR /&gt;$ def='node'def&lt;BR /&gt;$ SET DEFAULT 'def'&lt;BR /&gt;&lt;BR /&gt;Note that this code will do something sensible regardless of the node name, and is very easy to add additional nodes in future (like the example above OTHER).</description>
      <pubDate>Wed, 18 Aug 2010 22:04:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676768#M18796</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2010-08-18T22:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676769#M18797</link>
      <description>&lt;!--!*#--&gt;&amp;gt; I have a new need to have the default&lt;BR /&gt;&amp;gt; directory set in the authorize record&lt;BR /&gt;&amp;gt; changed depending on whether the ID is&lt;BR /&gt;&amp;gt; logging onto an Alpha or an Itanium node.&lt;BR /&gt;&lt;BR /&gt;Why?  What, exactly, will this do for you?&lt;BR /&gt;(Besides causing trouble, that is.)&lt;BR /&gt;&lt;BR /&gt;As is often true, asking how to solve the&lt;BR /&gt;underlying problem can be more useful than&lt;BR /&gt;asking how to implement some particular&lt;BR /&gt;sub-ideal "solution" to that problem.</description>
      <pubDate>Wed, 18 Aug 2010 22:33:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676769#M18797</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-08-18T22:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676770#M18798</link>
      <description>Hi Greg,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; I have a new need to have the default directory set in the authorize record&lt;BR /&gt;&amp;gt;&amp;gt; changed depending on whether the ID is logging onto an Alpha or an&lt;BR /&gt;&amp;gt;&amp;gt; Itanium node.&lt;BR /&gt;&amp;gt;&amp;gt; The idea is to have the ID run a differnt login.com file depending on whether&lt;BR /&gt;&amp;gt;&amp;gt; it is on an alpha node or an itanium node.&lt;BR /&gt;&lt;BR /&gt;If the need is only for Alpha and Itanium nodes to execute different LOGIN.COM&lt;BR /&gt;procedures, you can have a only one LOGIN.COM file per ID but then have that&lt;BR /&gt;LOGIN.COM file check whether the current node is Alpha or Ia64 and then&lt;BR /&gt;based on this execute different set of code.&lt;BR /&gt;&lt;BR /&gt;Something like -&lt;BR /&gt;LOGIN.COM &lt;BR /&gt;...&lt;BR /&gt;$ IF F$GETSYI("ARCH_NAME") .EQS. "Alpha"&lt;BR /&gt;$ THEN&lt;BR /&gt;$  ! Alpha Code&lt;BR /&gt;$ ELSE&lt;BR /&gt;$  ! IA64 Code&lt;BR /&gt;$ ENDIF&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
      <pubDate>Thu, 19 Aug 2010 02:17:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676770#M18798</guid>
      <dc:creator>P Muralidhar Kini</dc:creator>
      <dc:date>2010-08-19T02:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676771#M18799</link>
      <description>re: Murali,&lt;BR /&gt;&lt;BR /&gt;$ IF F$GETSYI("ARCH_NAME") .EQS. "Alpha"&lt;BR /&gt;$ THEN&lt;BR /&gt;$ ! Alpha Code&lt;BR /&gt;$ ELSE&lt;BR /&gt;$ ! IA64 Code&lt;BR /&gt;$ ENDIF&lt;BR /&gt;&lt;BR /&gt;ah, not quite... you could be on a VAX, or some future architecture. Since this kind of potentially incorrect assumption was probably THE biggest issue when migrating to IA64, I'd have hoped that everyone would be more vigilant about not committing it again.&lt;BR /&gt;&lt;BR /&gt;$ arch=$GETSYI("ARCH_NAME") &lt;BR /&gt;$ IF arch.EQS. "Alpha"&lt;BR /&gt;$ THEN&lt;BR /&gt;$ ! Alpha Code&lt;BR /&gt;$ ELSE IF arch.EQS."IA64"&lt;BR /&gt;$ THEN&lt;BR /&gt;$ ! IA64 Code&lt;BR /&gt;$ ELSE IF arch.EQS."VAX"&lt;BR /&gt;$ THEN&lt;BR /&gt;$ ! VAX code&lt;BR /&gt;$ ELSE&lt;BR /&gt;$ ! Error - unexpected architecture&lt;BR /&gt;$ ENDIF&lt;BR /&gt;$ ENDIF&lt;BR /&gt;$ ENDIF&lt;BR /&gt;&lt;BR /&gt;(assumption is the mother of all stuff ups)</description>
      <pubDate>Thu, 19 Aug 2010 03:11:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676771#M18799</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2010-08-19T03:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676772#M18800</link>
      <description>Greg, what's the real requirement here?  Are you using separate databases or unique database versions on the different architectures?  Trying to make sure that you only use Alpha executables on the Alpha and Itanium images on Itanium?  One main reason for mixed architecture clusters is being able to share data so...  it seems counter-productive to try and circumvent that feature.&lt;BR /&gt;&lt;BR /&gt;bob</description>
      <pubDate>Thu, 19 Aug 2010 03:12:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676772#M18800</guid>
      <dc:creator>Bob Blunt</dc:creator>
      <dc:date>2010-08-19T03:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676773#M18801</link>
      <description>Hi John,&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; ah, not quite... you could be on a VAX, or some future architecture&lt;BR /&gt;Yes, thats a very good point.&lt;BR /&gt;&lt;BR /&gt;The code that you have put up looks very neat especially the following part&lt;BR /&gt;&amp;gt;&amp;gt; $ ELSE&lt;BR /&gt;&amp;gt;&amp;gt; $ ! Error - unexpected architecture&lt;BR /&gt;&lt;BR /&gt;I will keep that in mind. Thanks for pointing that out.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Murali</description>
      <pubDate>Thu, 19 Aug 2010 03:53:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676773#M18801</guid>
      <dc:creator>P Muralidhar Kini</dc:creator>
      <dc:date>2010-08-19T03:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676774#M18802</link>
      <description>&lt;!--!*#--&gt;Greg, bearing in mind all the warnings others have given you -- there is a way to do this.&lt;BR /&gt;&lt;BR /&gt;What you need is a logical name which identifies the VMS disk and/or root directory for each architecture.&lt;BR /&gt;&lt;BR /&gt;Then, in the SYSUAF, use that logical name as the default device for the user.&lt;BR /&gt;&lt;BR /&gt;For example, if you want user JBLOGGS to log into DSA1:[ALPHA_USER.JBLOGGS] when logging into an AlphaServer, and DSA1:[IA64_USER.JBLOGGS] when logging into an Integrity server, you could set it up as follows:&lt;BR /&gt;&lt;BR /&gt;1. In SYS$MANAGER:SYLOGICALS.COM or SYSTARTUP_VMS.COM, define a logical&lt;BR /&gt;&lt;BR /&gt;     $ define/sys/exec ORA_APPL -&lt;BR /&gt;       DSA1:['f$getsyi("ARCH_NAME")'_USER.] -&lt;BR /&gt;       /trans=(conc,term)&lt;BR /&gt;&lt;BR /&gt;2. In AUTHORIZE set up the user:&lt;BR /&gt;&lt;BR /&gt;     $ mcr authorize modify JBLOGGS -&lt;BR /&gt;       /dev=ORA_APPL:/dir=[JBLOGGS]&lt;BR /&gt;&lt;BR /&gt;3. Create the two top-level directories.&lt;BR /&gt;4. Create the user's directory under each.&lt;BR /&gt;&lt;BR /&gt;This arrangement will correctly set the user's login directory, SYS$LOGIN logical name, etc. at each login (batch, interactive or network).&lt;BR /&gt;&lt;BR /&gt;As others have said, you need to think very carefully before going down this route.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Jeremy Begg</description>
      <pubDate>Thu, 19 Aug 2010 04:34:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676774#M18802</guid>
      <dc:creator>Jeremy Begg</dc:creator>
      <dc:date>2010-08-19T04:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676775#M18803</link>
      <description>If the intent is to have a different "working" directory for each architecture, thena a variant on what has been described can work.  Using logical names, insert into the login.com file a "set default working_dev" where working_dev is defined on each machine as a concealed device.  This will mean that you have duplicate named directories on the "login" device and the "working" device.&lt;BR /&gt;&lt;BR /&gt;An alternative would be to set up the environment based upon logical names that are contained in 2 different tables, one for each architecture.  In this fashion the only change would be to determine which tables to use based upon the architecture.  We use a similar idea where I am working now to create both production and test environments.&lt;BR /&gt;&lt;BR /&gt;In order to determine which method would work, please describe exactly what the issues are that make you require 2 "login" directories.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Dan</description>
      <pubDate>Thu, 19 Aug 2010 10:12:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676775#M18803</guid>
      <dc:creator>abrsvc</dc:creator>
      <dc:date>2010-08-19T10:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676776#M18804</link>
      <description>To all:&lt;BR /&gt;&lt;BR /&gt;Thank you for all your replies and important reasons to not do what I proposed as well as ways to do it if I persist.  Well, after reading through all the posts and giving more consideration to the ends I am trying to achieve I am going to go the two ID route.  &lt;BR /&gt;&lt;BR /&gt;I now see that as a much cleaner and easier to maintain path.  I do appreaciate all your replies and your questions which lead me to what seems to be a better result.&lt;BR /&gt;&lt;BR /&gt;Thanks again&lt;BR /&gt;&lt;BR /&gt;Greg</description>
      <pubDate>Thu, 19 Aug 2010 12:31:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676776#M18804</guid>
      <dc:creator>Gregory Pagan</dc:creator>
      <dc:date>2010-08-19T12:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676777#M18805</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] the ends I am trying to achieve [...]&lt;BR /&gt;&lt;BR /&gt;Disclosing those might have avoided&lt;BR /&gt;considerable wasted time and effort.</description>
      <pubDate>Thu, 19 Aug 2010 12:43:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676777#M18805</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-08-19T12:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676778#M18806</link>
      <description>Greg,&lt;BR /&gt;&lt;BR /&gt;I agree with Jeremy: Use a common login, and invoke an architecture-specific set of definitions. Typically, this is done using a logical name (e.g., HOST_ARCHITECTURE:DEFINE.COM). The logical name is defined in the system wide logical name table when the node is started. &lt;BR /&gt;&lt;BR /&gt;There is no need to embed IF statements that check architecture in the user's login, merely an invocation of a file whose logical name differs on each architecture.&lt;BR /&gt;&lt;BR /&gt;What goal are you attempting?&lt;BR /&gt;&lt;BR /&gt;References:&lt;BR /&gt;&lt;BR /&gt;"Strategies for Migrating from Alpha and VAX systems to HP Integrity Servers on OpenVMS", see &lt;A href="http://www.rlgsc.com/publications/vmstechjournal/migrationstrategies.html" target="_blank"&gt;http://www.rlgsc.com/publications/vmstechjournal/migrationstrategies.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;"Inheritance Based Environments in Stand-alone OpenVMS Systems and OpenVMS Clusters", see &lt;A href="http://www.rlgsc.com/publications/vmstechjournal/inheritance.html" target="_blank"&gt;http://www.rlgsc.com/publications/vmstechjournal/inheritance.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Thu, 19 Aug 2010 15:16:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676778#M18806</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2010-08-19T15:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676779#M18807</link>
      <description>All,&lt;BR /&gt;&lt;BR /&gt;The ID in question is used to control Oracle.  Right now we have Oracle version 10 only on our Itanium node but we are upgrading our Oracle version 9 on Alpha to Oracle version 10 on Alpha.  &lt;BR /&gt;&lt;BR /&gt;Currently the Oracle10 default device is a drive that houses the Itanium code for Oracle.  The Alpha code for Oracle will be on another device to keep them totally separate.  &lt;BR /&gt;&lt;BR /&gt;That is why I was interested if I could have one id that I could have go to two home devices.  I do appoligize that I did not provide this information from the begging as some of you pointed out.&lt;BR /&gt;&lt;BR /&gt;I am gratefull to you all for taking the time to share your experience and knowledge and I have decidied that the best alternative is to go with two ID's one for each version of Oracle10.  It end up being much easier to keep things straight going forward.  &lt;BR /&gt;&lt;BR /&gt;Greg</description>
      <pubDate>Thu, 19 Aug 2010 15:54:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676779#M18807</guid>
      <dc:creator>Gregory Pagan</dc:creator>
      <dc:date>2010-08-19T15:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676780#M18808</link>
      <description>Greg,&lt;BR /&gt;&lt;BR /&gt;How about defining a system logical name "ORACLE_HOME" which is defined based upon the architecture?&lt;BR /&gt;&lt;BR /&gt;Arguably, this definition could be used as part of the UAF entry for the ORACLE DBA account.&lt;BR /&gt;&lt;BR /&gt;The above is based upon your last description of the specifics of the situation.&lt;BR /&gt;&lt;BR /&gt;- Bob Gezelter, &lt;A href="http://www.rlgsc.com" target="_blank"&gt;http://www.rlgsc.com&lt;/A&gt;</description>
      <pubDate>Thu, 19 Aug 2010 16:11:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676780#M18808</guid>
      <dc:creator>Robert Gezelter</dc:creator>
      <dc:date>2010-08-19T16:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676781#M18809</link>
      <description>With 2 versions of Oracle running in the cluster, do you also want 2 environments?  If so, use the "system" level logicals defined during startup to point to the correct version/directory_tree and have the logical names the same.  Log into the Alpha and the alpha system table points you to the V9 area, similarly the system table for the Itanium points to the V10 area.&lt;BR /&gt;&lt;BR /&gt;With the logical name being the same on each system, there are no changes required in login.com or any other common procedure.&lt;BR /&gt;&lt;BR /&gt;Dan</description>
      <pubDate>Thu, 19 Aug 2010 16:29:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676781#M18809</guid>
      <dc:creator>abrsvc</dc:creator>
      <dc:date>2010-08-19T16:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple default directories for an ID</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676782#M18810</link>
      <description>We actually have 3 versions of Oracle running in the cluter now.  We have oracle 9 for rman running on 1 alpha node, we have oracle 9 for our normal work on another alpha node, and then Oracle 10 on an itanium node.  We the values for Oracle_Home get created at the node level not the cluster level.  If if logon onto alpha1 you get out ACTOEM intall.  If you logon onto alpha2 you get our oracle9 install, etc.&lt;BR /&gt;&lt;BR /&gt;Is that what you are asking about?&lt;BR /&gt;&lt;BR /&gt;Greg</description>
      <pubDate>Thu, 19 Aug 2010 16:41:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/multiple-default-directories-for-an-id/m-p/4676782#M18810</guid>
      <dc:creator>Gregory Pagan</dc:creator>
      <dc:date>2010-08-19T16:41:02Z</dc:date>
    </item>
  </channel>
</rss>

