RE: [UV] Program dying

2004-03-22 Thread Hanwell, David


"The Modern '3 Laws of Thermodynamics':
1.  You can't win.
2.  You can't break even.
3.  You can't quit the game."  -- Lord Corey Snow.
David Hanwell

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of [EMAIL PROTECTED]
Sent: Monday, March 22, 2004 1:28 PM
To: U2 Users Discussion List
Subject: Re: [UV] Program dying

First off those nested Loops are downright scary (reminds me of code I
found as a QA manager when the programmer was stoned at the time) -- 

Ever try

1) performing the selects at TCL individually to make sure permissions
haven't gotten wacked

2) Pulling out that code alone and running it with a debug after the
select statements?

3) Does it only bomb out with others may be accessing any of the
elements? (i.e. the list)

--
Debster
> w2k uv 10.0.4.
> I have a Basic program that randomly drops the telnet connection
(dies), but
> sometimes it does run to completion. I can't see any pattern. This is
a
> "batch" program - no user input; selects several files and read/write.

> When it dies it creates this entry in the Event Viewer (event id
1004);
> "UniVerse error: Unhandled Exception raised at address 0x101E037D :
Access
> violation. Attempted to read address 0x00F71000. Binary data is
processor
> CONTEXT structure.."
> 
> Can anybody shed light on what the error is trying to tell me?
> 
> TIA - Mark.
> 
> 
> 
> -__
> 
> 
> This e-mail, including any attachments, may contain information 
> that is protected by law as privileged and confidential, and is 
> transmitted for the sole use of the intended recipient.  If you 
> are not the intended recipient, you are hereby notified that any 
> use, dissemination, copying or retention of this e-mail or the 

> information contained herein is strictly prohibited.  If you have 
> received this e-mail in error, please immediately notify the sender 
> by telephone or reply e-mail, and permanently delete this e-mail 
> from your computer system.  Thank you.
> -- 
> u2-users mailing list
> [EMAIL PROTECTED]
> http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users





CONFIDENTIALITY
This e-mail and any attachments are confidential and also may be privileged.
If you are not the named recipient, or have otherwise received this
communication in error, please delete it from your inbox, notify the sender
immediately, and do not disclose its contents to any other person,
use them for any purpose, or store or copy them in any medium.
Thank you for your cooperation.




--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


Re: [UV] Program dying

2004-03-22 Thread astarte00
First off those nested Loops are downright scary (reminds me of code I found as a QA 
manager when the programmer was stoned at the time) -- 

Ever try

1) performing the selects at TCL individually to make sure permissions haven't gotten 
wacked

2) Pulling out that code alone and running it with a debug after the select statements?

3) Does it only bomb out with others may be accessing any of the elements? (i.e. the 
list)

--
Debster
> w2k uv 10.0.4.
> I have a Basic program that randomly drops the telnet connection (dies), but
> sometimes it does run to completion. I can't see any pattern. This is a
> "batch" program - no user input; selects several files and read/write. 
> When it dies it creates this entry in the Event Viewer (event id 1004);
> "UniVerse error: Unhandled Exception raised at address 0x101E037D : Access
> violation. Attempted to read address 0x00F71000. Binary data is processor
> CONTEXT structure.."
> 
> Can anybody shed light on what the error is trying to tell me?
> 
> TIA - Mark.
> 
> 
> 
> ­__
> 
> 
> This e-mail, including any attachments, may contain information 
> that is protected by law as privileged and confidential, and is 
> transmitted for the sole use of the intended recipient.  If you 
> are not the intended recipient, you are hereby notified that any 
> use, dissemination, copying or retention of this e-mail or the 

> information contained herein is strictly prohibited.  If you have 
> received this e-mail in error, please immediately notify the sender 
> by telephone or reply e-mail, and permanently delete this e-mail 
> from your computer system.  Thank you.
> -- 
> u2-users mailing list
> [EMAIL PROTECTED]
> http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: [UV] Program dying

2004-03-22 Thread Mike Pflugfelder
What sort of problems are you having?  What OS and UV release?  We're
having problems at UV 10.1 on Windows 2000 and I hope to test a new
build of UV sometime this week.  Wondering if we're having the same
issues.

-Mike Pflugfelder

-Original Message-
From: Anthony Youngman [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 22, 2004 11:26 AM
To: U2 Users Discussion List
Subject: RE: [UV] Program dying

FYI, this sounds very similar to the problem I have with
HS.UPDATE.FILEINFO, so it isn't necessarily your code ...

Cheers,
Wol 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Eastwood
Sent: 22 March 2004 16:23
To: 'U2 Users Discussion List'
Subject: RE: [UV] Program dying

Tried that...the &PH& entry just stops - no messages.
It has a Record Counter display but 'where' it stops (if it stops) is
random.  There could very well be a problem with the program, but I
can't
see it, I was hoping the Event Entry would point-out the problem.

FYI - Here is some sudo-code...the odd piece of logic (to me) this
program
does is process Lists within Lists (three deep).
EXECUTE "SELECT FILE1 WITH blah..." RTNLIST LIST1
LOOP
  READNEXT ID1 FROM LIST1 ELSE EXIT
  CLEARSELECT LIST2
  EXECUTE 'SELECT FILE2 WITH xxx = "':ID1:'"' RTNLIST LIST2
  LOOP
READNEXT ID2 FROM LIST2 ELSE EXIT
CLEARSELECT LIST3
EXECUTE 'SELECT FILE3 WITH xxx = "':ID2:'"' RTNLIST LIST3
LOOP
  READNEXT ID3 FROM LIST3 ELSE EXIT
  ...do stuff...
REPEAT
  REPEAT
REPEAT
END

Thanks again, Mark.



> -Original Message-
> From: Jeff Schasny [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 22, 2004 10:53 AM
> To: U2 Users Discussion List
> Subject: RE: [UV] Program dying
> 
> 
> You might try running it as a phantom and then checking the 
> entry in the
> &PH& file to trap any Universe level errors
> 
> -Original Message-
> From: Mark Eastwood [mailto:[EMAIL PROTECTED]
> [snip]
> 
-__


This e-mail, including any attachments, may contain information 
that is protected by law as privileged and confidential, and is 
transmitted for the sole use of the intended recipient.  If you 
are not the intended recipient, you are hereby notified that any 
use, dissemination, copying or retention of this e-mail or the 
information contained herein is strictly prohibited.  If you have 
received this e-mail in error, please immediately notify the sender 
by telephone or reply e-mail, and permanently delete this e-mail 
from your computer system.  Thank you.
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users





***

This transmission is intended for the named recipient only. It may
contain private and confidential information. If this has come to you in
error you must not act on anything disclosed in it, nor must you copy
it, modify it, disseminate it in any way, or show it to anyone. Please
e-mail the sender to inform us of the transmission error or telephone
ECA International immediately and delete the e-mail from your
information system.

Telephone numbers for ECA International offices are: Sydney +61 (0)2
9911 7799, Hong Kong + 852 2121 2388, London +44 (0)20 7351 5000 and New
York +1 212 582 2333.


***

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users
--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: [UV] Program dying

2004-03-22 Thread Jeff Schasny
Hmmm... Nothing like a good Monday mystery.  I'd probably look next for file
corruption in the data files in question.

-Original Message-
From: Mark Eastwood [mailto:[EMAIL PROTECTED]
Tried that...the &PH& entry just stops - no messages.
It has a Record Counter display but 'where' it stops (if it stops) is
random.  There could very well be a problem with the program, but I can't
see it, I was hoping the Event Entry would point-out the problem.

FYI - Here is some sudo-code...the odd piece of logic (to me) this program
does is process Lists within Lists (three deep).
EXECUTE "SELECT FILE1 WITH blah..." RTNLIST LIST1
LOOP
  READNEXT ID1 FROM LIST1 ELSE EXIT
  CLEARSELECT LIST2
  EXECUTE 'SELECT FILE2 WITH xxx = "':ID1:'"' RTNLIST LIST2
  LOOP
READNEXT ID2 FROM LIST2 ELSE EXIT
CLEARSELECT LIST3
EXECUTE 'SELECT FILE3 WITH xxx = "':ID2:'"' RTNLIST LIST3
LOOP
  READNEXT ID3 FROM LIST3 ELSE EXIT
  ...do stuff...
REPEAT
  REPEAT
REPEAT
END

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: [UV] Program dying

2004-03-22 Thread Anthony Youngman
FYI, this sounds very similar to the problem I have with
HS.UPDATE.FILEINFO, so it isn't necessarily your code ...

Cheers,
Wol 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Mark Eastwood
Sent: 22 March 2004 16:23
To: 'U2 Users Discussion List'
Subject: RE: [UV] Program dying

Tried that...the &PH& entry just stops - no messages.
It has a Record Counter display but 'where' it stops (if it stops) is
random.  There could very well be a problem with the program, but I
can't
see it, I was hoping the Event Entry would point-out the problem.

FYI - Here is some sudo-code...the odd piece of logic (to me) this
program
does is process Lists within Lists (three deep).
EXECUTE "SELECT FILE1 WITH blah..." RTNLIST LIST1
LOOP
  READNEXT ID1 FROM LIST1 ELSE EXIT
  CLEARSELECT LIST2
  EXECUTE 'SELECT FILE2 WITH xxx = "':ID1:'"' RTNLIST LIST2
  LOOP
READNEXT ID2 FROM LIST2 ELSE EXIT
CLEARSELECT LIST3
EXECUTE 'SELECT FILE3 WITH xxx = "':ID2:'"' RTNLIST LIST3
LOOP
  READNEXT ID3 FROM LIST3 ELSE EXIT
  ...do stuff...
REPEAT
  REPEAT
REPEAT
END

Thanks again, Mark.



> -Original Message-
> From: Jeff Schasny [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 22, 2004 10:53 AM
> To: U2 Users Discussion List
> Subject: RE: [UV] Program dying
> 
> 
> You might try running it as a phantom and then checking the 
> entry in the
> &PH& file to trap any Universe level errors
> 
> -Original Message-
> From: Mark Eastwood [mailto:[EMAIL PROTECTED]
> [snip]
> 
-__


This e-mail, including any attachments, may contain information 
that is protected by law as privileged and confidential, and is 
transmitted for the sole use of the intended recipient.  If you 
are not the intended recipient, you are hereby notified that any 
use, dissemination, copying or retention of this e-mail or the 
information contained herein is strictly prohibited.  If you have 
received this e-mail in error, please immediately notify the sender 
by telephone or reply e-mail, and permanently delete this e-mail 
from your computer system.  Thank you.
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users




***

This transmission is intended for the named recipient only. It may contain private and 
confidential information. If this has come to you in error you must not act on 
anything disclosed in it, nor must you copy it, modify it, disseminate it in any way, 
or show it to anyone. Please e-mail the sender to inform us of the transmission error 
or telephone ECA International immediately and delete the e-mail from your information 
system.

Telephone numbers for ECA International offices are: Sydney +61 (0)2 9911 7799, Hong 
Kong + 852 2121 2388, London +44 (0)20 7351 5000 and New York +1 212 582 2333.

***

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: [UV] Program dying

2004-03-22 Thread Chuck Mongiovi
You also might try running it from the system console from a UV shell .. you
might get errors there that you wouldn't get during a standard TELNET
-Chuck

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Jeff Schasny
Sent: Monday, March 22, 2004 10:53 AM
To: U2 Users Discussion List
Subject: RE: [UV] Program dying


You might try running it as a phantom and then checking the entry in the
&PH& file to trap any Universe level errors

-Original Message-
From: Mark Eastwood [mailto:[EMAIL PROTECTED]
[snip]

Can anybody shed light on what the error is trying to tell me?

--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: [UV] Program dying

2004-03-22 Thread Mark Eastwood
Tried that...the &PH& entry just stops - no messages.
It has a Record Counter display but 'where' it stops (if it stops) is
random.  There could very well be a problem with the program, but I can't
see it, I was hoping the Event Entry would point-out the problem.

FYI - Here is some sudo-code...the odd piece of logic (to me) this program
does is process Lists within Lists (three deep).
EXECUTE "SELECT FILE1 WITH blah..." RTNLIST LIST1
LOOP
  READNEXT ID1 FROM LIST1 ELSE EXIT
  CLEARSELECT LIST2
  EXECUTE 'SELECT FILE2 WITH xxx = "':ID1:'"' RTNLIST LIST2
  LOOP
READNEXT ID2 FROM LIST2 ELSE EXIT
CLEARSELECT LIST3
EXECUTE 'SELECT FILE3 WITH xxx = "':ID2:'"' RTNLIST LIST3
LOOP
  READNEXT ID3 FROM LIST3 ELSE EXIT
  ...do stuff...
REPEAT
  REPEAT
REPEAT
END

Thanks again, Mark.



> -Original Message-
> From: Jeff Schasny [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 22, 2004 10:53 AM
> To: U2 Users Discussion List
> Subject: RE: [UV] Program dying
> 
> 
> You might try running it as a phantom and then checking the 
> entry in the
> &PH& file to trap any Universe level errors
> 
> -Original Message-
> From: Mark Eastwood [mailto:[EMAIL PROTECTED]
> [snip]
> 
­__


This e-mail, including any attachments, may contain information 
that is protected by law as privileged and confidential, and is 
transmitted for the sole use of the intended recipient.  If you 
are not the intended recipient, you are hereby notified that any 
use, dissemination, copying or retention of this e-mail or the 
information contained herein is strictly prohibited.  If you have 
received this e-mail in error, please immediately notify the sender 
by telephone or reply e-mail, and permanently delete this e-mail 
from your computer system.  Thank you.
--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: [UV] Program dying

2004-03-22 Thread Jeff Schasny
You might try running it as a phantom and then checking the entry in the
&PH& file to trap any Universe level errors

-Original Message-
From: Mark Eastwood [mailto:[EMAIL PROTECTED]
[snip]

Can anybody shed light on what the error is trying to tell me?

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users