7605

Information and discussion about BR error codes.

Moderators: Susan Smith, admin

Post Reply
John
Posts: 555
Joined: Sun Apr 26, 2009 8:27 am

7605

Post by John »

the problem:
Error 7605 on line 42100

the line:
42100 execute 'Index '&ctb_bills_file$&' '&env$("Temp")&'\Bills.Cnv 1/13/5 3/6/4 -[WrkDrv] DupKeys Replace Shr -n'

status sub reveals:
Substitute [WRKDRV] C:\DOCUME~1\JBowman\LOCALS~1\Temp\

Status Files bills reveals:
Open File #996 F:\SIUL\CLSINC\PERM19.A05\BILLS.INT
Internal, Outin, Keyed,Shr Recl= 90 CurrentRec= 0
Btree Key File F:\SIUL\CLSINC\PERM19.A05\BILLS.IDX
Key Field Pos= 1 Length= 3
Key Field Pos= 4 Length= 1
Key Field Pos= 5 Length= 4
No Records Locked


after error try manual:
Index \SIUL\CLSINC\PERM19.A05\Bills.int C:\DOCUME~1\JBowman\LOCALS~1\Temp\Bills.Cnv 1/13/5 3/6/4 -[WrkDrv] DupKeys Replace Shr -n
returns an error 7605

after error try manual:
close #996:
execute "Index \SIUL\CLSINC\PERM19.A05\Bills.int C:\DOCUME~1\JBowman\LOCALS~1\Temp\Bills.Cnv 1/13/5 3/6/4 -[WrkDrv] DupKeys Replace Shr -n"
returns errror 7605

after error try manual:
Index \SIUL\CLSINC\PERM19.A05\Bills.int C:\DOCUME~1\JBowman\LOCALS~1\Temp\Bills.Cnv 1/13/5 3/6/4 -C:\DOCUME~1\JBowman\LOCALS~1\Temp\ DupKeys Replace Shr -n
returns an error 4148

after error try manual:
close #996:
execute "Index \SIUL\CLSINC\PERM19.A05\Bills.int C:\DOCUME~1\JBowman\LOCALS~1\Temp\Bills.Cnv 1/13/5 3/6/4 -C:\DOCUME~1\JBowman\LOCALS~1\Temp\ DupKeys Replace Shr -n"
returns a Create Index File successful.




:?: Any idea why I might get an error 7605? How would one fix something like this?
John
Posts: 555
Joined: Sun Apr 26, 2009 8:27 am

Post by John »

one additional piece of info - another index exactly like this one execpt a different index file name and only one key element (instead of 3) executes right before this line and works fine.

wbversion$=4.20e+
John
Posts: 555
Joined: Sun Apr 26, 2009 8:27 am

Post by John »

no sorry - it was a different base file that the previous index was on, however this is happening on an array of directories, and it worked on the previous 15 or so, which leads me to believe that possibly there is a file corruption issue...

after removing that directory from the loop - I now get the same 7605 error on another file in a different directory. The index with only one parameter.

I thought perhaps the problem is that directory names include a dot (.), however there we're others with a dot which seemed to process correctly.
Post Reply