Why this error may occur?

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Why this error may occur?

#1 Post 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?
Attachments
1.jpg
1.jpg (62.53 KiB) Viewed 17210 times
Безымянный.jpg
Безымянный.jpg (65.75 KiB) Viewed 17220 times

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Why this error may occur?

#2 Post 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.
The eXpress train is coming - and it has more cars.

skiman
Posts: 1199
Joined: Thu Jan 28, 2010 1:22 am
Location: Sijsele, Belgium
Contact:

Re: Why this error may occur?

#3 Post 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
Best regards,

Chris.
www.aboservice.be

User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Re: Why this error may occur?

#4 Post 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.

User avatar
Auge_Ohr
Posts: 1428
Joined: Wed Feb 24, 2010 3:44 pm

Re: Why this error may occur?

#5 Post 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.
greetings by OHR
Jimmy

User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Re: Why this error may occur?

#6 Post 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.

Cliff Wiernik
Posts: 605
Joined: Thu Jan 28, 2010 9:11 pm
Location: Steven Point, Wisconsin USA
Contact:

Re: Why this error may occur?

#7 Post by Cliff Wiernik »

Where can you find a listing of the descriptions for those error codes?

User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Re: Why this error may occur?

#8 Post 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

User avatar
Auge_Ohr
Posts: 1428
Joined: Wed Feb 24, 2010 3:44 pm

Re: Why this error may occur?

#9 Post 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 765 times
EH Error List found in PDR 6356
greetings by OHR
Jimmy

User avatar
Eugene Lutsenko
Posts: 1649
Joined: Sat Feb 04, 2012 2:23 am
Location: Russia, Southern federal district, city of Krasnodar
Contact:

Re: Why this error may occur?

#10 Post 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

Post Reply