Board index » delphi » Table Full. Paradox 4.0
Brad
![]() Delphi Developer |
Wed, 07 Apr 1999 03:00:00 GMT
|
Brad
![]() Delphi Developer |
Wed, 07 Apr 1999 03:00:00 GMT
Table Full. Paradox 4.0Hi All, I'm getting a full table error on my paradox 4 table. It has 380,000 Cheers Tox |
Aage Johanse
![]() Delphi Developer |
Wed, 07 Apr 1999 03:00:00 GMT
Re:Table Full. Paradox 4.0QuoteBrad wrote: There is a setting in the BDE-config - "block size" or something like that. Doubling the value will double the capasity. 2. Aage J. |
Tox
![]() Delphi Developer |
Thu, 08 Apr 1999 03:00:00 GMT
Re:Table Full. Paradox 4.0Aage Johansen <aagjo...@online.no> wrote in article Quote> Brad wrote: Quote> 2. interbase when loading a 10 mb text file. -- Brad |
P.Wachte
![]() Delphi Developer |
Thu, 08 Apr 1999 03:00:00 GMT
Re:Table Full. Paradox 4.0In Pdox/Dos up-ing the block size only took effect when the table was QuoteAage Johansen <aagjo...@online.no> wrote: |
Aage Johanse
![]() Delphi Developer |
Thu, 08 Apr 1999 03:00:00 GMT
Re:Table Full. Paradox 4.0Quote> > 1. P.Wachtel) Quote> > 2. Importing from a text table is rather quick. I you insert a million records before committing you may have more than one cup of coffee. Aage J. |
Sundial Servic
![]() Delphi Developer |
Thu, 08 Apr 1999 03:00:00 GMT
Re:Table Full. Paradox 4.0QuoteIn article <54d41g$...@reader1.reader.news.ozemail.net> "P.Wachtel" <tech...@databars.com.au> writes: create a new table (restructuring won't do it, but you can "borrow structure" during the create). Then add the records from the old table into the new. The limit comes from the data-structure Paradox uses to indicate whether a /mr/ |
Sundial Servic
![]() Delphi Developer |
Thu, 08 Apr 1999 03:00:00 GMT
Re:Table Full. Paradox 4.0QuoteIn article <326AA56D.4...@online.no> Aage Johansen <aagjo...@online.no> writes: data handling algorithms used by a C/S implementation may be no different from those used by Paradox. When loading data into a table, whether it be C/S or local, here are a few (1) Import the records in batches. If you need to load 100,000 records then (2) If you can wrap each batch in a "transaction" then do so. If you can get (3) Drop all indexes and primary-keys before you begin and add them back (4) Back-up the table files immediately after the import is complete! (5) In Paradox, FLIMPORT is a doggy-dog. Use a third-party product such as /mr/ |
Andrew Benne
![]() Delphi Developer |
Thu, 08 Apr 1999 03:00:00 GMT
Re:Table Full. Paradox 4.0Quote"Tox" <eeva...@cc.curtin.edu.au> wrote: Interbase tables isn't set up right, or you have it misconfigured. It shouldn't even be close to that long. Andrew |
Ron Jackso
![]() Delphi Developer |
Fri, 09 Apr 1999 03:00:00 GMT
Re:Table Full. Paradox 4.0If you are importing this many records, you might want to remove any QuoteAndrew Bennett wrote: |