dbTalk Databases Forums  

System Error 112.23.0

comp.databases.btrieve comp.databases.btrieve


Discuss System Error 112.23.0 in the comp.databases.btrieve forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Rolf Ackermann
 
Posts: n/a

Default System Error 112.23.0 - 08-28-2003 , 07:45 AM






Hi everybody

We have PSQL.7 SP3 on W2K (SP4).

Sometimes we can found the following entry in the PVSW.LOG file:

08-28-2003 14:36:35 NTMKDE 00000834 NTDBSMGR.EXE MWBDB01
E System Error: 112.23.0

Has anybody an idea what problem this is? None of the users reports any
problem. Any help is welcome!


--
Regards
Rolf Ackermann

Reply With Quote
  #2  
Old   
Gordon
 
Posts: n/a

Default Re: System Error 112.23.0 - 08-29-2003 , 05:28 AM






Rolf,

Systemerror 112.23.0:

112 : internal error in IO_subsys
23 : Operation Code : Get Direct/Chunk
0 : OS errorcode : none

Most IO_subsys errors are the result of file corruption. You might
want to try rebuilding the file and see if that solves your problem.

Strange thing is that you get this error on a Get Direct, which would
imply you already have position and thus that the requested info
should already be in Pervasives cache. There should be no need for
additional I/O unless the record has a large variable length part that
hasn't all been read into cache or unless you're cache is being
swapped out to disk by the OS.


On Thu, 28 Aug 2003 14:45:12 +0200, Rolf Ackermann
<rolf.ackermann (AT) spin (DOT) ch> wrote:

Quote:
Hi everybody

We have PSQL.7 SP3 on W2K (SP4).

Sometimes we can found the following entry in the PVSW.LOG file:

08-28-2003 14:36:35 NTMKDE 00000834 NTDBSMGR.EXE MWBDB01
E System Error: 112.23.0

Has anybody an idea what problem this is? None of the users reports any
problem. Any help is welcome!

Gordon Bos
Q-RY Solutions
+31-(0)15-2564035

http://www.q-ry.nl/


Reply With Quote
  #3  
Old   
Bill Bach
 
Posts: n/a

Default Re: System Error 112.23.0 - 08-29-2003 , 11:51 PM



OR, it could be that the application is tracking records by physical
position somehow, and periodically a deleted record gets accessed. Since
the record may no longer exist, the GetDirect fails. In this case, this
error would NOT indicate corruption, but rather just indicates poorly
designed code.
Goldstar Software Inc.
Building on Btrieve(R) for the Future(SM)
Bill Bach
BillBach (AT) goldstarsoftware (DOT) com
http://www.goldstarsoftware.com
*** Pervasive.SQL Service & Support Classes ***
Chicago: September 16-18: See our web site for details!

Gordon wrote:

Quote:
Rolf,

Systemerror 112.23.0:

112 : internal error in IO_subsys
23 : Operation Code : Get Direct/Chunk
0 : OS errorcode : none

Most IO_subsys errors are the result of file corruption. You might
want to try rebuilding the file and see if that solves your problem.

Strange thing is that you get this error on a Get Direct, which would
imply you already have position and thus that the requested info
should already be in Pervasives cache. There should be no need for
additional I/O unless the record has a large variable length part that
hasn't all been read into cache or unless you're cache is being
swapped out to disk by the OS.

On Thu, 28 Aug 2003 14:45:12 +0200, Rolf Ackermann
rolf.ackermann (AT) spin (DOT) ch> wrote:

Hi everybody

We have PSQL.7 SP3 on W2K (SP4).

Sometimes we can found the following entry in the PVSW.LOG file:

08-28-2003 14:36:35 NTMKDE 00000834 NTDBSMGR.EXE MWBDB01
E System Error: 112.23.0

Has anybody an idea what problem this is? None of the users reports any
problem. Any help is welcome!


Gordon Bos
Q-RY Solutions
+31-(0)15-2564035

http://www.q-ry.nl/


Reply With Quote
  #4  
Old   
Gordon
 
Posts: n/a

Default Re: System Error 112.23.0 - 09-01-2003 , 02:25 AM



Thought about that, but figured this would require external index
files. Never seen anyone use them, so I tossed it out ;-)

On 30 Aug 2003 04:51:31 GMT, Bill Bach <bbach (AT) cncdsl (DOT) com> wrote:

Quote:
OR, it could be that the application is tracking records by physical
position somehow, and periodically a deleted record gets accessed. Since
the record may no longer exist, the GetDirect fails. In this case, this
error would NOT indicate corruption, but rather just indicates poorly
designed code.
Goldstar Software Inc.
Building on Btrieve(R) for the Future(SM)
Bill Bach
BillBach (AT) goldstarsoftware (DOT) com
http://www.goldstarsoftware.com
*** Pervasive.SQL Service & Support Classes ***
Chicago: September 16-18: See our web site for details!

Gordon wrote:

Rolf,

Systemerror 112.23.0:

112 : internal error in IO_subsys
23 : Operation Code : Get Direct/Chunk
0 : OS errorcode : none

Most IO_subsys errors are the result of file corruption. You might
want to try rebuilding the file and see if that solves your problem.

Strange thing is that you get this error on a Get Direct, which would
imply you already have position and thus that the requested info
should already be in Pervasives cache. There should be no need for
additional I/O unless the record has a large variable length part that
hasn't all been read into cache or unless you're cache is being
swapped out to disk by the OS.

On Thu, 28 Aug 2003 14:45:12 +0200, Rolf Ackermann
rolf.ackermann (AT) spin (DOT) ch> wrote:

Hi everybody

We have PSQL.7 SP3 on W2K (SP4).

Sometimes we can found the following entry in the PVSW.LOG file:

08-28-2003 14:36:35 NTMKDE 00000834 NTDBSMGR.EXE MWBDB01
E System Error: 112.23.0

Has anybody an idea what problem this is? None of the users reports any
problem. Any help is welcome!


Gordon Bos
Q-RY Solutions
+31-(0)15-2564035

http://www.q-ry.nl/

Gordon Bos
Q-RY Solutions
+31-(0)15-2564035

http://www.q-ry.nl/


Reply With Quote
  #5  
Old   
Bill Bach
 
Posts: n/a

Default Re: System Error 112.23.0 - 09-01-2003 , 09:51 AM



Actually, not all apps need to use this. I have seen this status code come
back from an application in the past -- just users trying to recall records
that had been recently deleted, yet still in someone's scroll window (since
GetNextExtended returns this data)...
BB

Gordon wrote:

Quote:
Thought about that, but figured this would require external index
files. Never seen anyone use them, so I tossed it out ;-)

On 30 Aug 2003 04:51:31 GMT, Bill Bach <bbach (AT) cncdsl (DOT) com> wrote:

OR, it could be that the application is tracking records by physical
position somehow, and periodically a deleted record gets accessed. Since
the record may no longer exist, the GetDirect fails. In this case, this
error would NOT indicate corruption, but rather just indicates poorly
designed code.
Goldstar Software Inc.
Building on Btrieve(R) for the Future(SM)
Bill Bach
BillBach (AT) goldstarsoftware (DOT) com
http://www.goldstarsoftware.com
*** Pervasive.SQL Service & Support Classes ***
Chicago: September 16-18: See our web site for details!

Gordon wrote:

Rolf,

Systemerror 112.23.0:

112 : internal error in IO_subsys
23 : Operation Code : Get Direct/Chunk
0 : OS errorcode : none

Most IO_subsys errors are the result of file corruption. You might
want to try rebuilding the file and see if that solves your problem.

Strange thing is that you get this error on a Get Direct, which would
imply you already have position and thus that the requested info
should already be in Pervasives cache. There should be no need for
additional I/O unless the record has a large variable length part that
hasn't all been read into cache or unless you're cache is being
swapped out to disk by the OS.

On Thu, 28 Aug 2003 14:45:12 +0200, Rolf Ackermann
rolf.ackermann (AT) spin (DOT) ch> wrote:

Hi everybody

We have PSQL.7 SP3 on W2K (SP4).

Sometimes we can found the following entry in the PVSW.LOG file:

08-28-2003 14:36:35 NTMKDE 00000834 NTDBSMGR.EXE MWBDB01
E System Error: 112.23.0

Has anybody an idea what problem this is? None of the users reports any
problem. Any help is welcome!


Gordon Bos
Q-RY Solutions
+31-(0)15-2564035

http://www.q-ry.nl/


Gordon Bos
Q-RY Solutions
+31-(0)15-2564035

http://www.q-ry.nl/


Reply With Quote
Reply




Thread Tools
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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.