If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > Error in Diag Log - 16,000 times in 8 mins!!

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-09-04, 12:27
BrianFineos BrianFineos is offline
Registered User
 
Join Date: Jan 2004
Posts: 18
Error in Diag Log - 16,000 times in 8 mins!!

Does anybody know what this error might mean?
It is occuring 16,000 times in about 8 minutes when I do a compile and a dataload/conversion type operation.

+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

2004-08-09-12.00.38.309183 Instance:db2inst1 Node:000
PID:38768(db2agent (GRPFINT1) 0) TID:1 Appid:*LOCAL.db2inst1.060019110006
oper system services sqloopenp Probe:20 Database:GRPFINT1

errno: 0000 001a

+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

I am on "DB2/6000 8.1.0" / AIX 5.2.
I am going to try to upgrade to FP 6.

All help most appreciated!

Brian.
Reply With Quote
  #2 (permalink)  
Old 08-09-04, 12:39
J Petruk J Petruk is offline
Registered User
 
Join Date: Mar 2004
Location: Toronto, ON, Canada
Posts: 513
I don't have access to an AIX box, but if you go to /usr/lib and do :

find . -name errno.h -exec grep 26 {} \;

it should give some clues.

On Linux this is ETXTBSY, which suggests the file is somehow not available for write access.
__________________
--
Jonathan Petruk
DB2 Database Consultant
Reply With Quote
  #3 (permalink)  
Old 08-09-04, 12:45
J Petruk J Petruk is offline
Registered User
 
Join Date: Mar 2004
Location: Toronto, ON, Canada
Posts: 513
Should have given more details.

sqloopenp is in the sqlo or OS component, looks like it was opening something, likely a file.

errno: 0000 001a -> this is typically the errno from a system call, convert 1a to decimal gives us 26.

Thus grep for 26 in errno.h should give us the return code. Unfortunately without the db2 source we have no way of knowing for certain what system call was being executed at probe 20, but given the function name we can assume it was an open()... might be wrong.

If you try again with DIAGLEVEL 4 you may get more details, maybe not.
__________________
--
Jonathan Petruk
DB2 Database Consultant
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On