<?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: NOMSG + create failed in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211742#M1358</link>
    <description>I added a capture of the complete error message. Now wait for some 5000 creates before I have the msg.&lt;BR /&gt;&lt;BR /&gt;Willem : it must be a very big directory extend that takes 4.000.000 blocks.</description>
    <pubDate>Mon, 08 Mar 2004 06:55:50 GMT</pubDate>
    <dc:creator>Wim Van den Wyngaert</dc:creator>
    <dc:date>2004-03-08T06:55:50Z</dc:date>
    <item>
      <title>NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211734#M1350</link>
      <description>To monitor free space, we create a file of 10.000 contiguous blocks in the root of each disk. And delete it afterwards.&lt;BR /&gt;&lt;BR /&gt;However, 1 on 5000 creates fails for an unknown reason. I get FDL-F-NOMSG, Message number 10b4808c. I searched all error message libraries for this code and without result.&lt;BR /&gt;&lt;BR /&gt;There was no activity on the disk, there is no highwater marking, no defragmenting running (was just finished) and there were 33.000.000 blocks free, of which the largest contiguous was 5.000.000 blocks.&lt;BR /&gt;&lt;BR /&gt;1) what does this means ?&lt;BR /&gt;2) when is HP going to complete their error message libraries ? I know VMS since 1986 and have regularly seen these messages.&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Mar 2004 03:34:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211734#M1350</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-03-08T03:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211735#M1351</link>
      <description>Wim,&lt;BR /&gt;how did you attempt to decode the message?&lt;BR /&gt;&lt;BR /&gt;The following commands work for me on OpenVMS V7.3-1:&lt;BR /&gt;&lt;BR /&gt;$ set message sys$message:shrimgmsg&lt;BR /&gt;$ write sys$output f$message(%x10b4808c)&lt;BR /&gt;%FDL-F-OPENFDL, error opening !AS&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;I assume you know that !AS is a SYS$FAO() argument and why the filename cannot be shown here.</description>
      <pubDate>Mon, 08 Mar 2004 03:41:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211735#M1351</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2004-03-08T03:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211736#M1352</link>
      <description>Oeps. Must have made an error.&lt;BR /&gt;But the problem remains. Why did the create fail (I don't have a log).</description>
      <pubDate>Mon, 08 Mar 2004 03:49:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211736#M1352</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-03-08T03:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211737#M1353</link>
      <description>Oh, sorry, I didn't paste the rest of the answer...&lt;BR /&gt;&lt;BR /&gt;I assume that just that status code is returned to DCL, no? How are you creating that file? With CREATE/FDL or some code of your own? You somehow need to get at the 'lower' condition codes from OpenVMS. I don't recall if FDL$CREATE can supply them or can raise a condition.&lt;BR /&gt;&lt;BR /&gt;If nothing helps here, you can still use RMS to create a file that way. I know then RMS does provide the XQP status codes (look for STS and STV) in its access blocks (the FAB, if I recall correctly).&lt;BR /&gt;&lt;BR /&gt;I am curious: is there a reason that you don't use something like the following command to just get the free space of there disks or are you definitely after largest contiguous blocks?&lt;BR /&gt;&lt;BR /&gt;$ write sys$output f$getdvi("dsk","freeblocks")</description>
      <pubDate>Mon, 08 Mar 2004 03:51:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211737#M1353</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2004-03-08T03:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211738#M1354</link>
      <description>You should have a procedure which loops in sys$message and tries&lt;BR /&gt;&lt;BR /&gt;here is one, found in comp.os.vms&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$! MESSAGE.COM - get text of a message number&lt;BR /&gt;$!&lt;BR /&gt;$! P1 = message number (integer)&lt;BR /&gt;$!&lt;BR /&gt;$! Sample usage:&lt;BR /&gt;$!   @TRYMSG %X0000002A&lt;BR /&gt;$!&lt;BR /&gt;$!  EDIT DATE  EDIT  BY   DESCRIPTION&lt;BR /&gt;$!  ---------  ----  ---  ---------------------------------------&lt;BR /&gt;$!   2-SEP-92  102   DGW  Handle and display errors caused by &lt;BR /&gt;$!                        "%SYSTEM-F-IVSECIDCTL".&lt;BR /&gt;$!  13-AUG-92  101   DGW  Added SET MESSAGE/DELETE (per David P. Murphy,&lt;BR /&gt;$!                        &lt;MURPHY&gt;) to remove effect of SET&lt;BR /&gt;$!                        MESSAGEs.&lt;BR /&gt;$!  13-AUG-92  100   DGW  Documented, upcased, added 'no message found'.&lt;BR /&gt;$!&lt;BR /&gt;$!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&lt;BR /&gt;$&lt;BR /&gt;$&lt;BR /&gt;$  IF F$TYPE(P1) .NES. "INTEGER" &lt;BR /&gt;$  THEN&lt;BR /&gt;$    WRITE SYS$OUTPUT "P1 must be an INTEGER"&lt;BR /&gt;$    GOTO DONE&lt;BR /&gt;$  ENDIF&lt;BR /&gt;$&lt;BR /&gt;$  P1 = F$INTEGER(P1)&lt;BR /&gt;$  WRITE SYS$OUTPUT F$FAO("Searching for all messages with value %X!XL",P1)&lt;BR /&gt;$  MESSAGE_FOUND = 0&lt;BR /&gt;$&lt;BR /&gt;$LOOP:&lt;BR /&gt;$  FILENAME = F$SEARCH("SYS$MESSAGE:*.EXE;")&lt;BR /&gt;$  IF FILENAME .EQS. "" THEN GOTO DONE&lt;BR /&gt;$&lt;BR /&gt;$  WRITE SYS$OUTPUT F$FAO("!5* Checking !AS", FILENAME)&lt;BR /&gt;$  DEFINE/USER_MODE SYS$OUTPUT NLA0:    ! ignore "%SYSTEM-F-IVSECIDCTL" errors&lt;BR /&gt;$  DEFINE/USER_MODE SYS$ERROR NLA0:&lt;BR /&gt;$  SET noON&lt;BR /&gt;$  SET MESSAGE 'FILENAME'&lt;BR /&gt;$  IF .NOT. $STATUS THEN WRITE SYS$OUTPUT "(Error using above file: ", F$MESSAGE($STATUS), ")"&lt;BR /&gt;$  SET ON&lt;BR /&gt;$  TEXT = F$MESSAGE('P1')&lt;BR /&gt;$&lt;BR /&gt;$  IF F$EXTRACT(0,7,TEXT) .EQS. "%NONAME" THEN GOTO LOOP&lt;BR /&gt;$  IF F$LOCATE("-NOMSG,",TEXT) .NE. F$LENGTH(TEXT) THEN GOTO LOOP&lt;BR /&gt;$  WRITE SYS$OUTPUT TEXT&lt;BR /&gt;$  WRITE SYS$OUTPUT ""&lt;BR /&gt;$  MESSAGE_FOUND = 1&lt;BR /&gt;$  GOTO LOOP&lt;BR /&gt;$&lt;BR /&gt;$DONE:&lt;BR /&gt;$  IF .NOT. MESSAGE_FOUND THEN WRITE SYS$OUTPUT -&lt;BR /&gt;     F$FAO("No messages found in SYS$MESSAGE for %X!XL",P1)&lt;BR /&gt;$  SET MESSAGE/DELETE&lt;BR /&gt;$  EXIT&lt;/MURPHY&gt;</description>
      <pubDate>Mon, 08 Mar 2004 03:53:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211738#M1354</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2004-03-08T03:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211739#M1355</link>
      <description>Labadie,&lt;BR /&gt;&lt;BR /&gt;That's the procedure I used. I made an error.&lt;BR /&gt;&lt;BR /&gt;Uwe : free blocks is useless if they are not somewhat contigious. I saw several times that an application failed due to missing contiguous place, esp. when using RMS indexed files.</description>
      <pubDate>Mon, 08 Mar 2004 03:57:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211739#M1355</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-03-08T03:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211740#M1356</link>
      <description>Wim, &lt;BR /&gt;&lt;BR /&gt;a suggestion:&lt;BR /&gt;I have had a similar problem with directories containing a lot of files, on a disk where contiguous free space was scarce.&lt;BR /&gt;Creating a file _may_ require an extension of the directory file (by XQP). That will fail if not enough contiguous free space is available. File craete will then fail.&lt;BR /&gt;In your case, it _may_ be able to create a 10K-block file, but by that, space to allocate a new (contiguous) directory file will fail - giving the impression file creation failed.&lt;BR /&gt;(There is a thread in this forum about this)&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Mar 2004 05:55:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211740#M1356</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-03-08T05:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211741#M1357</link>
      <description>There is, BTW, another useful ressource:&lt;BR /&gt;&lt;BR /&gt;$ help/message/status=%x10b4808c&lt;BR /&gt;&lt;BR /&gt;I understand that the explanation does not really help right now, but I thought a reminder would not hurt.</description>
      <pubDate>Mon, 08 Mar 2004 06:49:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211741#M1357</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2004-03-08T06:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211742#M1358</link>
      <description>I added a capture of the complete error message. Now wait for some 5000 creates before I have the msg.&lt;BR /&gt;&lt;BR /&gt;Willem : it must be a very big directory extend that takes 4.000.000 blocks.</description>
      <pubDate>Mon, 08 Mar 2004 06:55:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211742#M1358</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-03-08T06:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211743#M1359</link>
      <description>1) what does this means ?&lt;BR /&gt;&lt;BR /&gt;It means that the FDL code has trouble opeing the FDL file.&lt;BR /&gt;&lt;BR /&gt;It says nothing about the file to be created as other replies suggest! &lt;BR /&gt;&lt;BR /&gt;It also suggests that the error handling in your script is messed up or maybe, pretty unlikely though, it means that the system could not get to "sys$message:shrimgmsg.exe".&lt;BR /&gt;Is the message image installed (shareable)?&lt;BR /&gt;&lt;BR /&gt;Normally, using the FDL utilities you'll nicely get a full message for example:&lt;BR /&gt;&lt;BR /&gt;$ create/fdl=nl: aap:[noot]mies&lt;BR /&gt;%FDL-F-CREATE, error creating AAP:[NOOT]MIES.;&lt;BR /&gt;-RMS-F-DEV, error in device name or inappropriate device type for operation&lt;BR /&gt;$ show symb $status&lt;BR /&gt;  $STATUS == "%X10B4806C"&lt;BR /&gt;$&lt;BR /&gt;&lt;BR /&gt;And for your specific error:&lt;BR /&gt;&lt;BR /&gt;$ create/fdl=aap:[noot]mies test&lt;BR /&gt;%FDL-F-OPENFDL, error opening AAP:[NOOT]MIES.FDL;&lt;BR /&gt;-RMS-F-DEV, error in device name or inappropriate device type for operation&lt;BR /&gt;$ show symb $status&lt;BR /&gt;  $STATUS == "%X10B4808C"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Are you using an FDL Utility? Or calleable?&lt;BR /&gt;&lt;BR /&gt;I agree with Uwe that you should perhpas consider a program calling RMS directly for your test to be more close to the source of a problem, if there is a problem. Such that you can print out STS and STV and FNM and the likes.&lt;BR /&gt;&lt;BR /&gt;On the Other hand the FDL Utilities normally do a fine job signalling all errors and theri arguments.&lt;BR /&gt;&lt;BR /&gt;2) when is HP going to complete their error message libraries ? I know VMS since 1986 and have regularly seen these messages.&lt;BR /&gt;&lt;BR /&gt;As soon as someone logs an official report with explicit circumstances of missing errors. I *never* get 'these' messages unless I mucked up error handlers in my program 'trying to be smart'.&lt;BR /&gt;Best VMS knows the message libraries are complete ( but not always used correctly .) &lt;BR /&gt;&lt;BR /&gt;Met vriendelijke groetjes,&lt;BR /&gt;&lt;BR /&gt;Hein. (RMS/FDL maintainer/engineer 10 years ago! :-)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Mar 2004 10:02:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211743#M1359</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-03-08T10:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211744#M1360</link>
      <description>Hein,&lt;BR /&gt;&lt;BR /&gt;Yes, it is create/fdl that is causing the problem. I have errorhandling but only get the error code, not the message stack. Unless I explecitly ask for it (as I will do from now).&lt;BR /&gt;&lt;BR /&gt;Yes, I used to maintain (generate) fdl's too, 10-15 years ago.&lt;BR /&gt;&lt;BR /&gt;The FDL is a static files that doesn't move and is only accessed by the procedure itself.&lt;BR /&gt;I tested if exclusive access is needed and the answer is NO. So, I think it must be something differently.&lt;BR /&gt;&lt;BR /&gt;Filling error messages based upon user complaints is the wrong way to go. You need someway of scanning the sources and checking if all codes are present in the libraries. That's how we used to work in COBOL.</description>
      <pubDate>Mon, 08 Mar 2004 10:20:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211744#M1360</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-03-08T10:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211745#M1361</link>
      <description>&amp;gt; Yes, it is create/fdl that is causing the problem. &lt;BR /&gt;&amp;gt; I have errorhandling but only get the error code, not the message stack. &lt;BR /&gt;&amp;gt; Unless I explecitly ask for it (as I will do from now).&lt;BR /&gt;&lt;BR /&gt;'Normally' it just shows up in the batch log no? Or is this spawned perhaps. &lt;BR /&gt;If it is spawned, then I'd strongly recommend to call FDL$CREATE instead.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Yes, I used to maintain (generate) fdl's too, 10-15 years ago.&lt;BR /&gt;&lt;BR /&gt;I think you mis-read or I did not write clearly enough.&lt;BR /&gt;I actually maintained the FDL code for the VMS sources.  :-).&lt;BR /&gt;&lt;BR /&gt;&amp;gt; The FDL is a static files that doesn't move and is only accessed by the procedure itself.&lt;BR /&gt;&lt;BR /&gt;As they normally are. So some other 'environmental' condition happened.&lt;BR /&gt;Some (pooled) process quota ran out?&lt;BR /&gt;Normally the FAB$L_STV field would have those details, not the primary FAB$L_STS.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I tested if exclusive access is needed and the answer is NO. So, I think it must be something differently.&lt;BR /&gt;&lt;BR /&gt;Well... exclusive access is indeed not needed, just read will do. But it will not work if an other stream already has exclusive access:&lt;BR /&gt;&lt;BR /&gt;$ open x tmp.fdl&lt;BR /&gt;$ create/fdl=tmp test&lt;BR /&gt;$ close x&lt;BR /&gt;$ open/write x tmp.fdl&lt;BR /&gt;$ create/fdl=tmp test&lt;BR /&gt;%FDL-F-OPENFDL, error opening U$1:[HEIN]TMP.FDL;&lt;BR /&gt;-RMS-E-FLK, file currently locked by another user&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Filling error messages based upon user complaints is the wrong way to go.&lt;BR /&gt;&amp;gt; You need someway of scanning the sources and checking if all codes are present in the libraries. That's how we used to work in COBOL.  &lt;BR /&gt; &lt;BR /&gt;Again, I mis-communicated. Sorry.&lt;BR /&gt;It is 99.99% sure that all message are caught in message files. The purpose of filing a full documented report would be to learn how the application got in trouble and maybe fix that somehow or just help  the customer to fix the problem... because it will be a customer applicaiton problem, not a 'missing' error message.&lt;BR /&gt;&lt;BR /&gt;There are no missing error messages in VMS. Period.&lt;BR /&gt;In the VMS sources error message are never hard coded.&lt;BR /&gt;They are always symbolic and the symbols/values are generated from message sources files. If a a message is 'forgotten' a compile / link error (while building VMS) will occur and will be fixed.&lt;BR /&gt;The above has to be the assumtion / expectation. Sure, something may have sneeked by, but that's pretty darn unliekly and so an application problem is expected.&lt;BR /&gt;&lt;BR /&gt;Now that application problem, may be due to a sub-optimal VMS setup choice ('surprise' location for an msg file) which VMS may be able to address, but it woudl be kinda od to run into that now, after decades of few / no  problems&lt;BR /&gt;&lt;BR /&gt;Groets,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Mar 2004 10:47:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211745#M1361</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-03-08T10:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211746#M1362</link>
      <description>Hello Wim,&lt;BR /&gt;&lt;BR /&gt;one more thing you could try:&lt;BR /&gt;&lt;BR /&gt;Bracket the create/fdl operation in a &lt;BR /&gt;&lt;BR /&gt;set watch file/class=major&lt;BR /&gt;create/fdl...&lt;BR /&gt;set watch file/class=none&lt;BR /&gt;&lt;BR /&gt;This should provide addtional information on the attempted file system operations. Yes, I know set watch is undocumented, but I have it from a reliable source that it is save to use ;-)&lt;BR /&gt;&lt;BR /&gt;Greetings, Martin</description>
      <pubDate>Mon, 08 Mar 2004 18:08:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211746#M1362</guid>
      <dc:creator>Martin P.J. Zinser</dc:creator>
      <dc:date>2004-03-08T18:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211747#M1363</link>
      <description>SET WATCH is a real friend!!&lt;BR /&gt; &lt;BR /&gt;(but don't forget it needs CMKRNL)&lt;BR /&gt;&lt;BR /&gt;Jan&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Mar 2004 03:36:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211747#M1363</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2004-03-09T03:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211748#M1364</link>
      <description>CMEXEC works for me, too. But, anyone with CMEXEC privilege can get into kernel mode with a small program anyway...</description>
      <pubDate>Tue, 09 Mar 2004 03:40:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211748#M1364</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2004-03-09T03:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: NOMSG + create failed</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211749#M1365</link>
      <description>Found the reason.&lt;BR /&gt;&lt;BR /&gt;While the procedure was doing create/fdl, another procedure was changing the protection on the directory in which the FDL was placed. Result : file currently locked by another user.&lt;BR /&gt;&lt;BR /&gt;Wim&lt;BR /&gt;(wie zoekt die vindt)</description>
      <pubDate>Thu, 27 May 2004 05:30:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/nomsg-create-failed/m-p/3211749#M1365</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-05-27T05:30:07Z</dc:date>
    </item>
  </channel>
</rss>

