home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / database / ingres / 1303 < prev    next >
Encoding:
Text File  |  1992-09-03  |  4.1 KB  |  87 lines

  1. Newsgroups: comp.databases.ingres
  2. Path: sparky!uunet!elroy.jpl.nasa.gov!usc!sol.ctr.columbia.edu!eff!news.oc.com!spssig.spss.com!uchinews!gsbacd.uchicago.edu!cs_mj
  3. From: cs_mj@gsbacd.uchicago.edu (Mark Jaeger)
  4. Subject: Re: E_CLFE07 and E_SC022F and E_LQ002E
  5. Message-ID: <1992Sep3.165656.1@gsbacd.uchicago.edu>
  6. Lines: 75
  7. Sender: news@uchinews.uchicago.edu (News System)
  8. Organization:     
  9. References: <1992Sep3.161408.8517@news.columbia.edu>
  10. Date: Thu, 3 Sep 1992 22:56:56 GMT
  11.  
  12. In article <1992Sep3.161408.8517@news.columbia.edu>, 
  13. alan@curta.cc.columbia.edu (Alan Crosswell) writes:
  14. > I keep seeing this errors under 6.3 and 6.4.  Anybody know that they
  15. > really mean if anything? 
  16. >       ::[4026            , 00846860]: Thu Sep  3 04:02:17 1992  
  17. > E_CLFE07_BS_READ_
  18. > ERR     Read from peer process failed; it may have exited.
  19. >       ::[4026            , 00846860]: Thu Sep  3 04:02:17 1992  
  20. > E_SC022F_BAD_GCA_
  21. > READ    SCF was unable to read a GCF block.
  22.  
  23. I mostly know VMS, but maybe this will help.  It looks like the front
  24. end went away, and the server tried to look for the next query from it,
  25. but couldn't.  It doesn't look like cause for concern.  In the last few
  26. months, this is the only similar thing we've seen:
  27.  
  28.       ::[II_DBMS_12D     , 005FB140]:  6-AUG-1992 11:19:29 
  29. E_GC0001_ASSOC_FAIL Association failure: partner abruptly released association
  30.       ::[II_DBMS_12D     , 005FB140]:  6-AUG-1992 11:19:29 
  31. E_SC022F_BAD_GCA_READ SCF was unable to read a GCF block.
  32.       ::[II_DBMS_12D     , 005FB140]:  6-AUG-1992 11:19:29 
  33. E_SC0123_SESSION_INITIATE Error initiating session.
  34.       ::[II_DBMS_12D     , 005FB140]:  6-AUG-1992 11:19:39 
  35. E_GC0001_ASSOC_FAIL Association failure: partner abruptly released association
  36.  
  37. Your E_CL error comes out of the compatibility library, which is like
  38. the server's kernel and provides a set of system calls (for server code)
  39. that are common across all platforms.  The E_SC error comes out of the
  40. SCF (session control?), which is like the dbms's scheduler and
  41. coordinates all activities associated with a session.  It says it
  42. couldn't read a GCF block, which is a communication block between the
  43. front end and the back end.  It looks like the SCF tried to read a GCF
  44. block by making a read call to the CL.  The CL couldn't satisfy the read
  45. because the front end process was gone.  The CL logged the error and
  46. returned an error code to the SCF, which also logged an error.
  47.  
  48. You might try to reproduce this by starting up a front end and then
  49. killing it in various ways: ^C, ^\, kill -9, kill -HUP, etc.  See what
  50. gets logged.  Try giving the interrupt in the middle of a select loop or
  51. cursor fetch loop, or after a cursor open but before the first fetch.
  52.  
  53. > Also, for the first time ever on a SQL program that we run regularly, this
  54. > one came out:
  55. > E_LQ002E _NODB  The 'open ' query has been issued outside of a DBMS
  56. >     session
  57. > (and the saved query text was "xec..e ..e.y (c.f1) '19923BUSI6015B02'")
  58. > However, there is no other useful indication in errlog to correlate this
  59. > to, other than those frequent E_CLFE07/E_SC022F errors.
  60.  
  61. It looks like an "open cursor" statement was issued, but after the front
  62. end and back end lost contact somehow.  Looks weird.  In VMS, the front
  63. end and back end communicate over 4 different channels (I think).  Each
  64. end gets two mailboxes to write to (for interprocess communication), one
  65. for queries/data and the other for status information.  In your case, it
  66. looks like maybe the query/data channel got hosed, but the status
  67. channel was still there so the server could report this error message
  68. back to the front end.
  69.  
  70. What is the saved query text after a normally executed "open"?  What was
  71. the name of the cursor that you were opening, and what is its associated
  72. "select"?
  73.  
  74. I'm shooting in the dark here, but maybe some of this will help.
  75.  
  76. --Mark Jaeger                internet: cs_mj@gsbvax.uchicago.edu
  77. Graduate School of Business        yellnet:  (312) 702-0328
  78. University of Chicago            faxnet:   (312) 702-0233
  79. Disclaimer: My opinions are my own and not those of my employer.
  80. Ich bin ein Virus.  Mach' mit und kopiere mich in Deine .signature.
  81.  
  82.