Re: Odp: [firebird-support] Performance with heavily updated table

2013-08-12 Thread Tim Ward
As far as I can tell from gstat output there are no old versions, which suggests that either I am misunderstanding what gstat is telling me or this explanation is not the answer to my problem. I see zero writes doing the count(*). On 09/08/2013 20:15, Ann Harrison wrote: Karol Bieniaszewski

Odp: [firebird-support] Performance with heavily updated table

2013-08-12 Thread liviusliv...@poczta.onet.pl
Hi, Put info from gstat or send it to me priv Also output from mon$ tables. Regards, Karol Bieniaszewski - Reply message - Od: Tim Ward t...@telensa.com Do: firebird-support@yahoogroups.com Temat: Odp: [firebird-support] Performance with heavily updated table Data: pon., sie 12, 2013

Re: Odp: [firebird-support] Performance with heavily updated table

2013-08-12 Thread Tim Ward
I believe the relevant part of the gstat output for the table in question to be as below, please let me know if I've got that wrong. (Names changed but otherwise unaltered.) My interpretation, which may be faulty, of Average version length: 0.00, total versions: 0, max versions: 0 is that

[firebird-support] move my firebird database

2013-08-12 Thread Marco Sucuzhañay
Dear, as I can move my firebird database unit to unit c :/ d :/ Thanks -- [Non-text portions of this message have been removed]

[firebird-support] I can move Firebird database

2013-08-12 Thread Marco Sucuzhañay
Dear, I have three file from my database: c :/ datos_1.fdb, datos_2.fdb c :/ c :/ datos_3.fdb; all of them form a single database, and I can move the segment c :/ datos_3.fdb, to another disk, thanks. [Non-text portions of this message have been removed]

Re: [firebird-support] I can move Firebird database

2013-08-12 Thread Jorge Andrés Brugger
http://tkb.amano.com/phpkb/article.php?id=181 could help. Regards. El 12/08/2013 01:36 p.m., Marco Sucuzhañay escribió: Dear, I have three file from my database: c :/ datos_1.fdb, datos_2.fdb c :/ c :/ datos_3.fdb; all of them form a single database, and I can move the segment c :/

Re[2]: [firebird-support] I can move Firebird database

2013-08-12 Thread Dmitry Kuzmenko
Hello, Jorge! Monday, August 12, 2013, 8:54:17 PM, you wrote: JAB http://tkb.amano.com/phpkb/article.php?id=181 could help. really? This piece of auto-generated crap can help? You read the description of that solution? :-) In the case of moving db+secondary files the only HEX editor, or old

Re: [firebird-support] I can move Firebird database

2013-08-12 Thread Helen Borrie
At 06:05 a.m. 13/08/2013, Thomas Steinmaurer wrote: Multi-file Firebird database are an ancient feature to overcome certain size limitation of file systems. Are you really in need of having a multi-file database? Agree 101%. I cannot even think of a good reason why that existing database is

RE: [firebird-support] Datatypes are not comparable in expression CASE when using TIMESTAMPS

2013-08-12 Thread Maya Opperman
Mark Rotteveel wrote: I am unable to reproduce it. Could you create a simple reproduction script that creates the table, adds the testdata and includes the query? My reproduction is: CREATE TABLE int_date_table ( intfield INTEGER, datefield DATE, timestampfield TIMESTAMP ); Make

[firebird-support] RE: Datatypes are not comparable in expression CASE when using TIMESTAMPS

2013-08-12 Thread Maya Opperman
I managed to get around it as follows, but I'd say it is a bug: What I wanted to do: case when ((p.StartDate = cast('Today' as date)) and (p.EndDate = cast('Today' as date))) then (cast('Today' as date) + 1) else p.enddate + 1 end What I