911-S Internal error - Dictionary heap failure 0000003E


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers 911-S Internal error - Dictionary heap failure 0000003E
# 1  
Old 06-01-2008
Bug 911-S Internal error - Dictionary heap failure 0000003E

Hi,

I am getting '911-S Internal error - Dictionary heap failure 0000003E' when I am trying to debug one of the cobol programs. Usually in Unix we run the debugger script and then run the exe files to Unit Test the cobol program, but in my case when I do QC to check the value that the variable contains, I get this error.

Could you please help me in understanding this error.

Thanks for your help in advance.

Regards,
Maverick@24
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Linux

CentOS release 6.7 - Internal Server Error

Hi #cat /etc/redhat-release CentOS release 6.7 (Final) 1. Installed one application and when access from web browser http..... it returns below error. ------------------------------------------------------- Internal Server Error The server encountered an internal error or... (1 Reply)
Discussion started by: iqtan
1 Replies

2. HP-UX

Internal Memory Error ?

================================================================================== SEGV_MAPERR: Address not mapped to object fffffffffffffff0 (Memory location which caused fault) ------------------ C-STACK ---------------------- (0) 0x40000000007622f0 CTrcStack2 + 0x1d0 at dptstack_mt.c:228... (6 Replies)
Discussion started by: sidharthmellam
6 Replies

3. Shell Programming and Scripting

500 internal server error

Hi, I need a quick help from GURUs of PERL. I moved a website to a new location and got an error "Internal Server Error" instead of specific error. As i don't know PERL so i don't know how to fix it. Can anybody help me to fix this error or to generate a specific error which i can... (3 Replies)
Discussion started by: shahzad79
3 Replies

4. AIX

Internal error

Dear experts, please inform when i am trying to use dbx to debug my code, iam getting following error: internal error: expected member attribute 's', 'p', 'r' or 'b', found... (1 Reply)
Discussion started by: vin_pll
1 Replies

5. UNIX for Advanced & Expert Users

Forwarding internal internet packets to internal webserver using iptables

Hi, I need to redirect internal internet requests to a auth client site siting on the gateway. Currently users that are authenticated to access the internet have there mac address listed in the FORWARD chain. All other users need to be redirected to a internal site for authentication. Can... (1 Reply)
Discussion started by: mshindo
1 Replies

6. Shell Programming and Scripting

500 Internal Server Error

:)Hi, I am working on perl-cgi script which i wrote on unix server, and now i want to run it from windows. Have put DNS entry, sybase and apache is running... But still I am getting 500 Internal Server Error!!! what could be the reason? (2 Replies)
Discussion started by: darshakraut
2 Replies

7. UNIX for Advanced & Expert Users

Internal heap ERROR 17113 addr=0x0

Hi, I'm running a COBOL process (with subroutines in standard C accessing an oracle database using OCI calls, using shared memories and sem etc....) on an AIX 5.1 machine. Under unusually heavy conditions (millions of loops in the process) I've got the following error: Execution error : file... (0 Replies)
Discussion started by: Isax50
0 Replies

8. UNIX for Dummies Questions & Answers

Error: Internal system error: Unable to initialize standard output file

Hey guys, need some help. Running AIX Version 5.2 and one of our cron jobs is writing errors to a log file. Any ideas on the following error message. Error: Internal system error: Unable to initialize standard output file I'm guessing more info might be needed, so let me know. Thanks (2 Replies)
Discussion started by: firkus
2 Replies
Login or Register to Ask a Question
Heap::Elem::RefRev(3pm) 				User Contributed Perl Documentation				   Heap::Elem::RefRev(3pm)

NAME
Heap::Elem::RefRev - Reversed Object Reverence Heap Elements SYNOPSIS
use Heap::Elem::RefRev( RefRElem ); use Heap::Fibonacci; my $heap = Heap::Fibonacci->new; my $elem; foreach $i ( 1..100 ) { $obj = myObject->new( $i ); $elem = RefRElem( $obj ); $heap->add( $elem ); } while( defined( $elem = $heap->extract_top ) ) { # assume that myObject object have a method I<printable> print "Largest is ", $elem->val->printable, " "; } DESCRIPTION
Heap::Elem::RefRev is used to wrap object reference values into an element that can be managed on a heap. Each referenced object must have a method cmp which can compare itself with any of the other objects that have references on the same heap. These comparisons must be con- sistant with normal arithmetic. The top of the heap will have the largest (according to cmp) element still remaining. (See Heap::Elem::Ref if you want the heap to always return the smallest element.) The details of the Elem interface are described in Heap::Elem. The details of using a Heap interface are described in Heap. AUTHOR
John Macdonald, john@perlwolf.com COPYRIGHT
Copyright 1998-2007, O'Reilly & Associates. This code is distributed under the same copyright terms as perl itself. SEE ALSO
Heap(3), Heap::Elem(3), Heap::Elem::Ref(3). perl v5.8.8 2007-10-23 Heap::Elem::RefRev(3pm)