Locating a GFE (Networking Products)
At 26 MAY 2000 08:28:20AM Timothy Farmer wrote:
We have our development system of our OI product on the same server as our test deployments. We keep getting GFE events in our event logs but we can't locate the bad file. The event log doesn't even let us know which system is the culprit.
The event log reads:
The "LHReadRecord" call failed, returning LH error number 127, file number 2, group number 329. Group Format Error: Group # : 329 Record length incorrect or frame linkage error.
We have over 300 files attached to each system and have had no luck in locating the GFE.
Any ideas?
At 26 MAY 2000 06:02PM Steve Smith wrote:
A select on every file will normally identify the culprit.
Try the LISTS file for starters (ie. a file lots of people use frequently)
Steve
At 26 MAY 2000 06:03PM Steve Smith wrote:
FILECOUNT=COUNT(@FILES,@FM) + 1
FILES=@FILES
FOR J=1 TO FILECOUNT
PRINT @(20,20) : FILESPERFORM "SELECT ":FILES:" BY F1 "PERFORM "CLEAR-LIST"NEXT J
* a select on every file will normally identify the culprit.
* Steve