dbTalk Databases Forums  

error base 8029

comp.databases.xbase.fox comp.databases.xbase.fox


Discuss error base 8029 in the comp.databases.xbase.fox forum.



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

Default error base 8029 - 12-15-2003 , 09:10 AM






----------------------------------------------------------------------------
--
LOG ERRORE di "RINDICI.EXE" Data: 15/12/2003 13.52.57

Versione Xbase++ : Xbase++ (R) Version 1.70.267
Sistema Operativo : Windows 98 SE 04.10 Build 02222 A
----------------------------------------------------------------------------
--
oError:args :
-> VALTYPE: N VALUE: 37
-> VALTYPE: N VALUE: ***********.***
oError:canDefault : .T.
oError:canRetry : .F.
oError:canSubstitute: .F.
oError:cargo : NIL
oError:description : Length of database field was exceeded
oError:filename :
oError:genCode : 63
oErrorperation : FIELDPUT
oErrorsCode : 0
oError:severity : 2
oError:subCode : 8029
oError:subSystem : BASE
oError:thread : 1
oError:tries : 0
----------------------------------------------------------------------------
--

What is happened ??

Thankyou!



Reply With Quote
  #2  
Old   
Rick Bean
 
Posts: n/a

Default Re: error base 8029 - 12-16-2003 , 09:36 AM






Gabriele,
This is the forum for Fox questions not Xbase++ - it's not likely you'll get many answers here.

Rick

"gabriele" <terra (AT) luna (DOT) it> wrote

Quote:
----------------------------------------------------------------------------
--
LOG ERRORE di "RINDICI.EXE" Data: 15/12/2003 13.52.57

Versione Xbase++ : Xbase++ (R) Version 1.70.267
Sistema Operativo : Windows 98 SE 04.10 Build 02222 A
----------------------------------------------------------------------------
--
oError:args :
-> VALTYPE: N VALUE: 37
-> VALTYPE: N VALUE: ***********.***
oError:canDefault : .T.
oError:canRetry : .F.
oError:canSubstitute: .F.
oError:cargo : NIL
oError:description : Length of database field was exceeded
oError:filename :
oError:genCode : 63
oErrorperation : FIELDPUT
oErrorsCode : 0
oError:severity : 2
oError:subCode : 8029
oError:subSystem : BASE
oError:thread : 1
oError:tries : 0
----------------------------------------------------------------------------
--

What is happened ??

Thankyou!



Reply With Quote
  #3  
Old   
Anthony Shipley
 
Posts: n/a

Default Re: error base 8029 - 12-17-2003 , 02:18 AM



"Rick Bean" <rgbean (AT) NOSPAMmelange-inc (DOT) com> [WA] wrote:

Quote:
Gabriele,
This is the forum for Fox questions not Xbase++ - it's not likely you'll get many answers here.
comp.databases.xbase.fox?

regards - anthony shipley

look, ma - no .sig


Reply With Quote
  #4  
Old   
Rick Bean
 
Posts: n/a

Default Re: error base 8029 - 12-17-2003 , 09:34 AM



Anthony,
xBase is a generic reference to all the languages that use the .DBF file format and at least some of the dBase command syntax. Fox(Pro) is just one of these variants. For an explict Xbase++ question, I'd suggest Gabriele try comp.databases.xbase.codebase or comp.databases.xbase.misc, or maybe even the the company that supplies Xbase++. Error messages and their causes are NOT universal across the many products, and a FoxPro person would not likely have a clue as to 8029 - especially when no code in the area of the problem was supplied.

I hoped that my answer was useful - not simply a "go away" response, but looking back at it, it could have been taken that way.

Rick

"Anthony Shipley" <astechsystems (AT) iinet (DOT) net.au> wrote

Quote:
"Rick Bean" <rgbean (AT) NOSPAMmelange-inc (DOT) com> [WA] wrote:

Gabriele,
This is the forum for Fox questions not Xbase++ - it's not likely you'll get many answers here.

comp.databases.xbase.fox?

regards - anthony shipley

look, ma - no .sig

Reply With Quote
  #5  
Old   
gabriele
 
Posts: n/a

Default Re: error base 8029 - 12-18-2003 , 08:55 AM



Thankyou for your exaustive answer .

Bye



Reply With Quote
  #6  
Old   
Alexandre Peshansky
 
Posts: n/a

Default Re: error base 8029 - 12-19-2003 , 04:27 PM



On Mon, 15 Dec 2003 16:10:03 +0100, "gabriele" <terra (AT) luna (DOT) it> wrote:
[ Courtesy cc'ed through e-mail to the quoted author ]

Quote:
----------------------------------------------------------------------------
--
LOG ERRORE di "RINDICI.EXE" Data: 15/12/2003 13.52.57

Versione Xbase++ : Xbase++ (R) Version 1.70.267
Sistema Operativo : Windows 98 SE 04.10 Build 02222 A
----------------------------------------------------------------------------
--
oError:args :
-> VALTYPE: N VALUE: 37
-> VALTYPE: N VALUE: ***********.***
oError:canDefault : .T.
oError:canRetry : .F.
oError:canSubstitute: .F.
oError:cargo : NIL
oError:description : Length of database field was exceeded
oError:filename :
oError:genCode : 63
oErrorperation : FIELDPUT
oErrorsCode : 0
oError:severity : 2
oError:subCode : 8029
oError:subSystem : BASE
oError:thread : 1
oError:tries : 0
----------------------------------------------------------------------------
--
[ When replying, remove *'s from address ]
Alexandre Peshansky, Systems Manager, RUH, NY
(note last name spelling change)


Reply With Quote
  #7  
Old   
Alexandre Peshansky
 
Posts: n/a

Default Re: error base 8029 - 12-19-2003 , 04:29 PM



On Mon, 15 Dec 2003 16:10:03 +0100, "gabriele" <terra (AT) luna (DOT) it> wrote:
[ Courtesy cc'ed through e-mail to the quoted author ]

Quote:
----------------------------------------------------------------------------
--
LOG ERRORE di "RINDICI.EXE" Data: 15/12/2003 13.52.57

Versione Xbase++ : Xbase++ (R) Version 1.70.267
Sistema Operativo : Windows 98 SE 04.10 Build 02222 A
----------------------------------------------------------------------------
--
oError:args :
-> VALTYPE: N VALUE: 37
-> VALTYPE: N VALUE: ***********.***
It looks like you tried to put a numeric value bigger then the field can hold
into the field, for instance:
the field MYVAL has a N(4,2) format, and you tried to execute REPLACE MYVAL WITH
12345.6789

--
[ When replying, remove *'s from address ]
Alexandre Peshansky, Systems Manager, RUH, NY
(note last name spelling change)


Reply With Quote
  #8  
Old   
Grumpy
 
Posts: n/a

Default Re: error base 8029 - 12-20-2003 , 02:31 AM



Then again, maybe she will!

"Rick Bean" <rgbean (AT) NOSPAMmelange-inc (DOT) com> wrote

Quote:
Gabriele,
This is the forum for Fox questions not Xbase++ - it's not likely you'll
get many answers here.

Rick

"gabriele" <terra (AT) luna (DOT) it> wrote in message
news:brkis9$16c$1 (AT) usenet (DOT) itgate.net...

-------------------------------------------------------------------------
---
--
LOG ERRORE di "RINDICI.EXE" Data: 15/12/2003 13.52.57

Versione Xbase++ : Xbase++ (R) Version 1.70.267
Sistema Operativo : Windows 98 SE 04.10 Build 02222 A

-------------------------------------------------------------------------
---
--
oError:args :
-> VALTYPE: N VALUE: 37
-> VALTYPE: N VALUE: ***********.***
oError:canDefault : .T.
oError:canRetry : .F.
oError:canSubstitute: .F.
oError:cargo : NIL
oError:description : Length of database field was exceeded
oError:filename :
oError:genCode : 63
oErrorperation : FIELDPUT
oErrorsCode : 0
oError:severity : 2
oError:subCode : 8029
oError:subSystem : BASE
oError:thread : 1
oError:tries : 0

-------------------------------------------------------------------------
---
--

What is happened ??

Thankyou!



Reply With Quote
  #9  
Old   
gabriele
 
Posts: n/a

Default Re: error base 8029 - 12-22-2003 , 11:06 AM



Quote:
It looks like you tried to put a numeric value bigger then the field can
hold
into the field, for instance:
the field MYVAL has a N(4,2) format, and you tried to execute REPLACE
MYVAL WITH
12345.6789
My personale solution to the problem : j have opened the file dbf and
deleted a very strange record , with stranges character as this"
WXX.àà##XYY" in the field .
After this cleaning operations now my DB work correctly !
I don't know what is happened !

Bye and thankyou !




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.