[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference iosg::all-in-1_v30

Title:*OLD* ALL-IN-1 (tm) Support Conference
Notice:Closed - See Note 4331.l to move to IOSG::ALL-IN-1
Moderator:IOSG::PYE
Created:Thu Jan 30 1992
Last Modified:Tue Jan 23 1996
Last Successful Update:Fri Jun 06 1997
Number of topics:4343
Total number of notes:18308

270.0. "Failed to create text file - 0001C00A" by KURMA::GMURRAY (Have Mercy I Cry City !) Wed Mar 18 1992 13:59

    
    Hi,
    
    	One of our users gets the following error when he tries to forward
    a short mail message from his READ box :
    
    	Failed to create text file - status returned was 0001C00A
    
    	His diskquota is OK. Where would you expect this text file to be
    created ? 
    
    	Thanks,
    
    		Gil
    
T.RTitleUserPersonal
Name
DateLines
270.1MSG directory grown too bigKURMA::GMURRAYHave Mercy I Cry City !Wed Mar 18 1992 14:3311
    
    	On further investigation, this seems to have been caused by his
    having a very large MSG directory - 123 blocks, containing 627 files.
    
    	The majority of these have been imported from VMSmail. Is there any
    way to redistribute them, say into the DOCn directories ?
    
    	Thanks,
    
    		Gil
    
270.2Rename directory and filesSIOG::T_REDMONDThoughts of an Idle MindWed Mar 18 1992 15:1915
    Convert the .MSG directory file. Do this by creating a new directory
    and then renaming all the current files into the new directory. Then
    rename the directory file itself.
    
    $ CREATE/ DIR [.NEW_MSG]
    $ RENAME [.MSG]*.* [.NEW_MSG]*.*
    $ RENAME NEW_MSG.DIR MSG.DIR
    $ PURGE MSG.DIR
    
    You should find that the file size (for 627 files) is much less than
    127 blocks. I don't know that this is the actual root problem though,
    the problems with large directory files tended to have vanished when
    VMS V5 appeared.
    
    Tony
270.3That did the trick KURMA::GMURRAYHave Mercy I Cry City !Wed Mar 18 1992 15:2513
    
    	Thanks a lot Tony,
    
    	The MSG.DIR has gone from 122/123 blocks down to 45/54 blocks !
    
    	I've advised him to use auto-forward from his VMSmail, rather than 
    	use VMSmail import from now on. This way the files will go to the
    	shared areas instead.
    
    	Cheers,
    
                	Gil
    		 
270.4Version 1 on directory?IOSG::TALLETTMit Schuh bish hiThu Mar 19 1992 08:248
    
    	RE: .2
    
    	Someone once told me that directories should be version ;1 but
    	I don't remember why...
    
    Regards,
    Paul
270.5Mostly because they don't work otherwise!IOSG::PYEGraham - ALL-IN-1 Sorcerer's ApprenticeThu Mar 19 1992 11:048
    Paul,
    
    One reason is that VMS doesn't treat them as directories otherwise!
    
    You can have a lot of fun with this, since of you do $DIR .DIR they
    show up, but $DIR [.name] doesn't work....
    
    Graham
270.6New codeIOSG::TALLETTMit Schuh bish hiFri Mar 20 1992 08:1912
    
    	So the code in .2 should read:
    
    	$ CREATE/DIR [.NEW_MSG]
    	$ RENAME [.MSG]*.*;* [.NEW_MSG]
    	$ DELETE MSG.DIR;
    	$ RENAME NEW_MSG.DIR MSG.DIR
    
    	or else you will get a ;2 directory.
    
    Regards,
    Paul
270.7Alternatively....IOSG::PYEGraham - ALL-IN-1 Sorcerer's ApprenticeFri Mar 20 1992 11:499
    Or perhaps:
    
    	$ RENAME MSG.DIR OLD_MSG.DIR
    	$ CREATE/DIRECTORY [.MSG]	! Must spell qualifiers in full :-)
    	$ RENAME [.OLD_MSG]*.*;* [.MSG]
    	$ SET FILE/PROTECTION=O:DREW OLD_MSG.DIR;
        $ DELETE OLD_MSG.DIR;
    
    Graham