[Zope-dev] Data.fs & ZEO

2001-07-03 Thread Priya Ramkumar
Hi I have installed Zope version 2.3.3 & ZEO1.0. I would like to copy the Data.fs from my previous zope installation which is 2.2.4 to the new one. I copied the Data.fs, Data.fs.lock, Data.fs.tmp & Data.fs.old from the old Zope to the "var" directory in the "Instance_home" directory. I start Zope

Re: [Zope-dev] Data.fs lost?? ideas?

2001-06-29 Thread Chris Withers
Chris Keyes wrote: > > Restart > > Realised file was 1.6meg not 700 Data.fs is question was of one of our FreeZope servers :-( Wgh... Anyone got any ideas what could have happened or what we should start looking for? cheers, Chris ___ Zope-D

[Zope-dev] Data.fs lost?? ideas?

2001-06-29 Thread Chris Keyes
In an attempt to upgrade the Zope from 2.3.1b1 to 2.3.2 we encountered a problem. All the data in out Data.fs file was lost so it had to be restored from a backup. Any ideas as to what the problem may have been??? Procedure Stopped the Zope instance Changed the Zope instance home and port Re

Re: [Zope-dev] Data.fs

2000-08-20 Thread Toby Dickenson
On Sat, 19 Aug 2000 14:17:51 -0400 (EDT), Chris McDonough <[EMAIL PROTECTED]> wrote: >> Surely this raises some data integrity issues if you copy in >> mid-transaction? Or does an incomplete transaction at the end of the db >> just get thrown out, and the design of the db assure that only the

Re: [Zope-dev] Data.fs

2000-08-19 Thread Chris McDonough
> Surely this raises some data integrity issues if you copy in > mid-transaction? Or does an incomplete transaction at the end of the db > just get thrown out, and the design of the db assure that only the end of > the file gets updated? An incomplete transaction at the end of Data.fs gets ig

Re: [Zope-dev] Data.fs

2000-08-19 Thread Ross Boylan
At 12:41 PM 8/18/2000, Dieter Maurer wrote: >Andre Schubert writes: > > > and can i backup the Data.fs when Zope is running. >Yes. Just copy it. > > > >Dieter Surely this raises some data integrity issues if you copy in mid-transaction? Or does an incomplete transaction at the end of the

Re: [Zope-dev] Data.fs

2000-08-18 Thread Dieter Maurer
Andre Schubert writes: > I'am using Zope 2.1.6 and my Data.fs is going corrupted > My Questions are: is there a way to delete the last transaction from > Data.fs, There is a product "tranalyze" (or "tranalyzer", "tranalyse", "tranalyser") that allows you to analyse and fix your Data.fs. Z

Re: [Zope-dev] Data.fs

2000-08-17 Thread R. David Murray
On Thu, 17 Aug 2000, Andre Schubert wrote: > My Questions are: is there a way to delete the last transaction from One answer: use tranalyzer to find the offset of the start of the last transaction and truncate the file there. > Data.fs, and can i backup the Data.fs when Zope is running. Is the

[Zope-dev] Data.fs

2000-08-17 Thread Andre Schubert
Hi, I'am using Zope 2.1.6 and my Data.fs is going corrupted and i don't have found a way for backup this file. My Questions are: is there a way to delete the last transaction from Data.fs, and can i backup the Data.fs when Zope is running. Is the backup of Data.fs inconsitent when i make the back

Re: [Zope-dev] Data.fs corruption (reproducable)

2000-05-29 Thread Dr. Peer Griebel
FYI: I managed to solve the problem. I simply took the third parameter out of the parameter list and initialized the variable inside the function: def FormatPreis( v, n=2, thou=regex.compile( "\([0-9]\)\([0-9][0-9][0-9]\([,.]\|$\)\)").search) becomes def FormatPreis( v, n=2 )