Page 1 of 1

Why this error may occur?

Posted: Mon Jun 20, 2016 8:13 pm
by Eugene Lutsenko
Why this error may occur?
Line 8686:

Code: Select all

CLOSE ALL
Could such an error occur due to congestion of the processor?

Re: Why this error may occur?

Posted: Tue Jun 21, 2016 5:31 am
by rdonnay
Could such an error occur due to congestion of the processor?
I don't know what would cause your processor to become congested, but I have had problems with mine becoming constipated. :lol:

Have you used SET RELATION anywhere in your code?

I have seen this problem when a database is closed that has a parent relation set to it.

Next time it occurs, click on "Inspect Object".
This will give you more information about the error.

Re: Why this error may occur?

Posted: Wed Jun 22, 2016 12:11 am
by skiman
Hi,

Maybe this could help. It checks if there are relations set.

Code: Select all

Function ABOCLoseAll()
***********************
LOCAL bError , aWorkareas , x, y

bError := ErrorBlock( {|e| Break(e)} )
aWorkAreas := workspacelist()
y := len(aWorkAreas)

for x = 1 to y
  BEGIN SEQUENCE
    (aWorkAreas[x])->(DbClearRelation())
    (aWorkAreas[x])->(DbCloseArea())
  ENDSEQUENCE
next
ErrorBlock(bError)
bError   := nil
Return nil

Re: Why this error may occur?

Posted: Thu Jun 23, 2016 8:36 am
by Eugene Lutsenko
What kind of nightmare and horror?

FATAL ERROR LOG
Error within the error handling!
SYS Thread-ID: 544
Module: EXE
Error Codes: EH: 1006 Sub: 0(0) OS: 0 XPP: 15
Call Stack of Thread 1 (544):
MAIN(68)
Call Stack of GUI Thread (768):
File: C:\Downloads\lemmaTXT.exe
TimeStamp: 20160623 19:35
End of FATAL ERROR LOG.

Re: Why this error may occur?

Posted: Thu Jun 23, 2016 8:42 am
by Auge_Ohr
Eugene Lutsenko wrote:Error Codes: EH: 1006 Sub: 0(0) OS: 0 XPP: 15
EH 1006 // two many memory-objects: there are not enough handles.
XPP 15 XPP_ERR_MEMORY_FULL Not enough memory or swapping space available.

Re: Why this error may occur?

Posted: Thu Jun 23, 2016 9:00 am
by Eugene Lutsenko
Auge_Ohr wrote:
Eugene Lutsenko wrote:Error Codes: EH: 1006 Sub: 0(0) OS: 0 XPP: 15
EH 1006 // two many memory-objects: there are not enough handles.
XPP 15 XPP_ERR_MEMORY_FULL Not enough memory or swapping space available.
I thought so. I now have on the local computer running two processing process, requiring large computational resources. will work for several days. Intelligent processing of large data. On the server it is generally not possible to process due to memory limitations.

Re: Why this error may occur?

Posted: Thu Jun 23, 2016 9:04 am
by Cliff Wiernik
Where can you find a listing of the descriptions for those error codes?

Re: Why this error may occur?

Posted: Thu Jun 23, 2016 9:15 am
by Eugene Lutsenko
Cliff Wiernik wrote:Where can you find a listing of the descriptions for those error codes?
No. But I tried to run it through TeamViewer on a computer at work, and there occurs the same. It seems impossible to make an indexed array to the base with 2 million records

Re: Why this error may occur?

Posted: Thu Jun 23, 2016 9:16 am
by Auge_Ohr
Cliff Wiernik wrote:Where can you find a listing of the descriptions for those error codes?
don't know where ( ASCN ?) i got it, here it is
errlists_new.zip
(31.05 KiB) Downloaded 766 times
EH Error List found in PDR 6356

Re: Why this error may occur?

Posted: Thu Jun 23, 2016 10:01 am
by Eugene Lutsenko
Auge_Ohr wrote:
Cliff Wiernik wrote:Where can you find a listing of the descriptions for those error codes?
don't know where ( ASCN ?) i got it, here it is
errlists_new.zip
EH Error List found in PDR 6356
Many thanks! I almost did lemmatization (rus). I will make - will place