[U2] Fault type is 11. Layer type is BASIC run machine.

2011-01-18 Thread Jeff Colvin
I’m getting the following error message:



CRITICAL ERROR! Notify the system administrator.

Abnormal termination of UniVerse.

Fault type is 11.  Layer type is BASIC run machine.

Fault occurred in BASIC program IM.BUILD.NEW.COLD.WRK at address 228.



I ran the IM.BUILD.NEW.COLD.WRK program in the DEBUG mode and found out that 
the error pops up when it executes the following line of code:

WRITE COLD.TEXT ON COLD.WRK, COLD.WRK.ID THEN

I found out the COLD.WRK is a TYPE 19 file.  The COLD.WRK.ID is set to 
cold13-1.txt.  I can use the PICK EDitor and view the txt file without a 
problem.  The COLD.TEXT record is 53,486,974 bytes in size.  I’ve opened up the 
permissions to the COLD.WRK file via chmod 777.  I’ve also had additional space 
allocated.



I am working on a system with Universe version 10.0.14 and AIX version 5.2.0.0.



I appreciate your help,



Jeff Colvin
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Fault type is 11. Layer type is BASIC run machine.

2011-01-18 Thread Robert Porter
Can you write a record (anything) on the COLD.WRK file with the editor? 
I'd try another id, then that one itself? 
If not, have you checked not only for space but inodes being available
on that filesystem?  
df -i on most 'nixes though AIX isn't in my usual repertoire...
 
Also, does that record (file) actually exist already?  If so, check the
perms on the file itself. Those will override the directories if they're
tighter. 
 
Robert
 
 
 
 
Robert F. Porter, MCSE, CCNA, ZCE
Lead Sr. Programmer / Analyst
Laboratory Information Services
Ochsner Health System
 
 
 
 
This transmission (including any attachments) may contain confidential
information, privileged material (including material protected by the
solicitor-client or other applicable privileges), or constitute
non-public information. Any use of this information by anyone other than
the intended recipient is prohibited. If you have received this
transmission in error, please immediately reply to the sender and delete
this information from your system. Use, dissemination, distribution, or
reproduction of this transmission by unintended recipients is not
authorized and may be unlawful.


 Jeff Colvin jeff.col...@hotmail.com 1/18/2011 10:00 AM 
I’m getting the following error message:



CRITICAL ERROR! Notify the system administrator.

Abnormal termination of UniVerse.

Fault type is 11.  Layer type is BASIC run machine.

Fault occurred in BASIC program IM.BUILD.NEW.COLD.WRK at address 228.



I ran the IM.BUILD.NEW.COLD.WRK program in the DEBUG mode and found out
that the error pops up when it executes the following line of code:

WRITE COLD.TEXT ON COLD.WRK, COLD.WRK.ID THEN

I found out the COLD.WRK is a TYPE 19 file.  The COLD.WRK.ID is set to
cold13-1.txt.  I can use the PICK EDitor and view the txt file without a
problem.  The COLD.TEXT record is 53,486,974 bytes in size.  I’ve opened
up the permissions to the COLD.WRK file via chmod 777.  I’ve also had
additional space allocated.



I am working on a system with Universe version 10.0.14 and AIX version
5.2.0.0.



I appreciate your help,



Jeff Colvin
___
U2-Users mailing list
U2-Users@listserver.u2ug.org 
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Fault type is 11. Layer type is BASIC run machine.

2011-01-18 Thread Jeff Schasny
The first think that comes to mind (other than holy cow, he's writing a 
54Meg record?), since you have apparently already considered disk space 
in the file system is inode availability.



Jeff Colvin wrote:

I’m getting the following error message:



CRITICAL ERROR! Notify the system administrator.

Abnormal termination of UniVerse.

Fault type is 11.  Layer type is BASIC run machine.

Fault occurred in BASIC program IM.BUILD.NEW.COLD.WRK at address 228.



I ran the IM.BUILD.NEW.COLD.WRK program in the DEBUG mode and found out that 
the error pops up when it executes the following line of code:

WRITE COLD.TEXT ON COLD.WRK, COLD.WRK.ID THEN

I found out the COLD.WRK is a TYPE 19 file.  The COLD.WRK.ID is set to 
cold13-1.txt.  I can use the PICK EDitor and view the txt file without a 
problem.  The COLD.TEXT record is 53,486,974 bytes in size.  I’ve opened up the 
permissions to the COLD.WRK file via chmod 777.  I’ve also had additional space 
allocated.



I am working on a system with Universe version 10.0.14 and AIX version 5.2.0.0.



I appreciate your help,



Jeff Colvin
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
  


--

Jeff Schasny - Denver, Co, USA
jschasny at gmail dot com

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Fault type is 11. Layer type is BASIC run machine.

2011-01-18 Thread Allen Egerton
You're writing a 53MB sequential file in a single write.  There are
Universe config directives that you could tweak, but given that you're
creating a text file within a directory I'd probably tweak the app to
use OPENSEQ/WRITESEQ/CLOSESEQ code instead.  That'll get rid of your
crash and almost certainly make the app run faster.



On 1/18/2011 11:00 AM, Jeff Colvin wrote:
 I’m getting the following error message:
 
 
 
 CRITICAL ERROR! Notify the system administrator.
 
 Abnormal termination of UniVerse.
 
 Fault type is 11.  Layer type is BASIC run machine.
 
 Fault occurred in BASIC program IM.BUILD.NEW.COLD.WRK at address 228.
 
 
 
 I ran the IM.BUILD.NEW.COLD.WRK program in the DEBUG mode and found out that 
 the error pops up when it executes the following line of code:
 
 WRITE COLD.TEXT ON COLD.WRK, COLD.WRK.ID THEN
 
 I found out the COLD.WRK is a TYPE 19 file.  The COLD.WRK.ID is set to 
 cold13-1.txt.  I can use the PICK EDitor and view the txt file without a 
 problem.  The COLD.TEXT record is 53,486,974 bytes in size.  I’ve opened up 
 the permissions to the COLD.WRK file via chmod 777.  I’ve also had additional 
 space allocated.
 
 
 
 I am working on a system with Universe version 10.0.14 and AIX version 
 5.2.0.0.
 
 
 
 I appreciate your help,

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Fault type is 11. Layer type is BASIC run machine.

2011-01-18 Thread Dan Goble
It sounds like you are blowing the memory stack with such a large item.   With 
type 19 files you will want to do WRITESEQ so that it writes each individual 
line out keeping your memory intact.

-Dan

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jeff Colvin
Sent: Tuesday, January 18, 2011 11:01 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Fault type is 11. Layer type is BASIC run machine.

I’m getting the following error message:



CRITICAL ERROR! Notify the system administrator.

Abnormal termination of UniVerse.

Fault type is 11.  Layer type is BASIC run machine.

Fault occurred in BASIC program IM.BUILD.NEW.COLD.WRK at address 228.



I ran the IM.BUILD.NEW.COLD.WRK program in the DEBUG mode and found out that 
the error pops up when it executes the following line of code:

WRITE COLD.TEXT ON COLD.WRK, COLD.WRK.ID THEN

I found out the COLD.WRK is a TYPE 19 file.  The COLD.WRK.ID is set to 
cold13-1.txt.  I can use the PICK EDitor and view the txt file without a 
problem.  The COLD.TEXT record is 53,486,974 bytes in size.  I’ve opened up the 
permissions to the COLD.WRK file via chmod 777.  I’ve also had additional space 
allocated.



I am working on a system with Universe version 10.0.14 and AIX version 5.2.0.0.



I appreciate your help,



Jeff Colvin
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Fault type is 11. Layer type is BASIC run machine.

2011-01-18 Thread Kishor
Are you accessing the file with the Sequential Access commands (Openseq, 
Readseq etc) ? If so, ensure you are doing a closeseq in the program.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jeff Colvin
Sent: 18 January 2011 16:01
To: u2-users@listserver.u2ug.org
Subject: [U2] Fault type is 11. Layer type is BASIC run machine.

I’m getting the following error message:



CRITICAL ERROR! Notify the system administrator.

Abnormal termination of UniVerse.

Fault type is 11.  Layer type is BASIC run machine.

Fault occurred in BASIC program IM.BUILD.NEW.COLD.WRK at address 228.



I ran the IM.BUILD.NEW.COLD.WRK program in the DEBUG mode and found out that 
the error pops up when it executes the following line of code:

WRITE COLD.TEXT ON COLD.WRK, COLD.WRK.ID THEN

I found out the COLD.WRK is a TYPE 19 file.  The COLD.WRK.ID is set to 
cold13-1.txt.  I can use the PICK EDitor and view the txt file without a 
problem.  The COLD.TEXT record is 53,486,974 bytes in size.  I’ve opened up the 
permissions to the COLD.WRK file via chmod 777.  I’ve also had additional space 
allocated.



I am working on a system with Universe version 10.0.14 and AIX version 5.2.0.0.



I appreciate your help,



Jeff Colvin
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users