This is an incredibly specific answer, but do you by any chance have an 
"insert" command in there?  Since you mention there's "quite a few 
calculations", I have frequently seen this error when I do the calculations 
within an "insert".  It goes away when I do the calc outside the insert.  IOW:
Rather than this:
    insert into table (columns) select  (.vDate - 2), ....
do this:
    set var vDate2 = (.vDate - 2)
    insert into table (columns) select .vDate2

Also I've seen this when I'm running with whileopt ON (accidentally) and I 
break one of the rules within a while loop.

Karen

 

 

 

-----Original Message-----
From: mike.ramsour <[email protected]>
To: RBASE-L Mailing List <[email protected]>
Sent: Sat, Mar 29, 2014 5:12 am
Subject: [RBASE-L] - Error message: I/O problems. Check for full Disk


Good morning:

One of my programs has been generatingthe error mesasge:  -ERROR- I/O problems 
- Check for a full disk.(2009)

Is there anything in particular I canlook for in the program that might cause 
this error to be generated?  Thereare quite a few calculations in the code 
including several instances ofthe ROUND function.

It happens both in Turbo V-8 and eXtreme9.5 64-bit.

I have RSTYLEd the code and TRACEd itseveral times.  This is one of those 
situations where the programruns fine when it's run as a standalone program but 
when it's run as partof a sequence of dozens of programs it errs out each time.

Any suggestions would be appreciated.

Thanks and have an awesome weekend!

Mike Ramsour
AK Steel Coshocton Works
Quality Department
Phone:  740-829-4340
Cell:  740-502-1659
Confidentiality Notice
This message is intended exclusively for the individual or entity to which it 
is addressed and may contain privileged, proprietary, or otherwise private 
information.  
If you are not the named addressee, you are not authorized to read, print, 
retain, copy or disseminate this message or any part of it.  If you have 
received this message in error, please notify the sender immediately by e-mail 
and delete all copies of the message.

Reply via email to