You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(13) |
Oct
(12) |
Nov
(26) |
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(8) |
Feb
|
Mar
|
Apr
(20) |
May
(31) |
Jun
(7) |
Jul
(6) |
Aug
(56) |
Sep
(2) |
Oct
|
Nov
(3) |
Dec
(1) |
2002 |
Jan
(4) |
Feb
(2) |
Mar
(2) |
Apr
(4) |
May
(2) |
Jun
(20) |
Jul
(31) |
Aug
(14) |
Sep
(30) |
Oct
(14) |
Nov
(13) |
Dec
(32) |
2003 |
Jan
(29) |
Feb
(46) |
Mar
(1) |
Apr
(3) |
May
(9) |
Jun
(3) |
Jul
(7) |
Aug
(6) |
Sep
(5) |
Oct
(4) |
Nov
(7) |
Dec
(5) |
2004 |
Jan
(6) |
Feb
|
Mar
(5) |
Apr
(2) |
May
(3) |
Jun
|
Jul
(3) |
Aug
(3) |
Sep
(4) |
Oct
(4) |
Nov
(5) |
Dec
(3) |
2005 |
Jan
|
Feb
(2) |
Mar
(23) |
Apr
(1) |
May
(5) |
Jun
|
Jul
(5) |
Aug
(1) |
Sep
(1) |
Oct
(4) |
Nov
(4) |
Dec
|
2006 |
Jan
(1) |
Feb
(3) |
Mar
(1) |
Apr
(2) |
May
(3) |
Jun
|
Jul
(1) |
Aug
(10) |
Sep
(3) |
Oct
(2) |
Nov
(3) |
Dec
|
2007 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(1) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
(1) |
Mar
(28) |
Apr
(18) |
May
(1) |
Jun
|
Jul
(4) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
(20) |
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2010 |
Jan
(1) |
Feb
(1) |
Mar
(2) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(10) |
Oct
(3) |
Nov
(4) |
Dec
(2) |
2011 |
Jan
(2) |
Feb
(3) |
Mar
(2) |
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
(5) |
Sep
(2) |
Oct
|
Nov
|
Dec
(1) |
2012 |
Jan
(1) |
Feb
(7) |
Mar
(1) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(2) |
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
(7) |
Nov
(3) |
Dec
|
2014 |
Jan
|
Feb
(3) |
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Mihai N. T. <mih...@vi...> - 2003-05-07 17:01:16
|
Hi there! I have a problem running Firebird (1.5) as a service under WIndows 2000 Server. Can anyone give me some hints on how can I get this working? Thanks, Mihai |
From: pnichols <pa...@co...> - 2003-05-06 19:29:47
|
How do I overcome the password problems on Windows 2000 with 1.5 RC1? I hqave tried the following (1) Gone to GSEC typed in gsec -modify sysdba -pw masterkey (2) Try to connect as user sysdba and masterkey call fails. (3) Tried to add a user with gsec -add -user SomeUser -pw somepassword\ The gsec takes both with no errors, but when I try to connect to a database usingt isql, I get the errors that password was not found isql -u someuser -p somepassword isql>CONNECT C:\SomeDatabase Errors come back stating that use rand password are not found/defined. So I go to gsec again gsec <ENTER> gsec> display and the users are shown. Running this on Unix (Linux) poses no problem, so what am I missing on Windows? thanks a million.. |
From: Martijn T. <m.t...@up...> - 2003-04-03 08:33:35
|
> > I'm documenting a comparison of speed and data throughput for Firebird, > > PostgreSQL, and MySQL, and I'm wondering if this is the place to ask people > > about tuning parameters to squeeze the most out of Firebird. > > > > OS: FreeBSD > > CPU: 2x 415MHz Celerons > > RAM:380MB > > HDD: ata66 20GB (hope to use 10GB for each test) > > > > Sure, it's small, but each database has to run in the same environment > > > > Any tips so far? Example Schema's? Make sure to test the TRANSACTION capable tables of MySQL. And try testing them with multiple users/applications at teh same time. not just single user. With regards, Martijn Tonies Database Workbench - the developer tool for InterBase & Firebird Upscene Productions http://www.upscene.com See you at the First European Firebird Conference in May in Fulda, Germany http://www.firebird-conference.com |
From: Skopalik S. <sko...@hl...> - 2003-04-03 08:25:54
|
My tips: 1. pure SQL engine speed in SP and trigers as computing, logical expresion, raising errors, UDF calling. 2. Single table performance in inserting rows, deleting updating all operation with single PK (common operation), group by, agregate functions 3. Single and composite indexies speed. Selecting by part of composite index, min, max operation 4. Disk IO speed like natural scan, writing large blob, fetching large blob, multi client operation with large data (cache performance) 5. Complex query like selection up to max table in query (may be 16?) where optimizer query plan failed Very useful will be comparition between all version of FireBird. Slavek > I'm documenting a comparison of speed and data throughput for Firebird, > PostgreSQL, and MySQL, and I'm wondering if this is the place to ask people > about tuning parameters to squeeze the most out of Firebird. > > OS: FreeBSD > CPU: 2x 415MHz Celerons > RAM:380MB > HDD: ata66 20GB (hope to use 10GB for each test) > > Sure, it's small, but each database has to run in the same environment > > Any tips so far? Example Schema's? > > Looking forward to replies > > Nige. > |
From: Nigel W. <ni...@e-...> - 2003-04-03 06:45:29
|
I'm documenting a comparison of speed and data throughput for Firebird, PostgreSQL, and MySQL, and I'm wondering if this is the place to ask people about tuning parameters to squeeze the most out of Firebird. OS: FreeBSD CPU: 2x 415MHz Celerons RAM:380MB HDD: ata66 20GB (hope to use 10GB for each test) Sure, it's small, but each database has to run in the same environment Any tips so far? Example Schema's? Looking forward to replies Nige. -------------------------------------------------------- Nigel Weeks E-Easy 15 Wellington St. Launceston Tas 7250 Ph. 61 3 6334 6664 Fax. 61 3 6331 7032 Email. ni...@ai... Web: www.e-easy.com.au -------------------------------------------------------- |
From: Marek K. <ma...@ga...> - 2003-03-20 17:46:57
|
Why Firebird 1.5 didn't return record in "select ... for update" I have two procedures=20 CREATE PROCEDURE BLOK_POLA ( P_POL_ID_POLA INTEGER) RETURNS ( R_POL_ID_POLA INTEGER) AS BEGIN SELECT POL_ID_POLA FROM POLA WHERE POL_ID_POLA =3D :R_POL_ID_POLA FOR UPDATE OF POL_ID_POLA INTO :R_POL_ID_POLA; SUSPEND; END and=20 CREATE PROCEDURE BLOK_POLA_A( P_POL_ID_POLA INTEGER) RETURNS ( R_POL_ID_POLA INTEGER) AS BEGIN SELECT POL_ID_POLA FROM POLA WHERE POL_ID_POLA =3D :R_POL_ID_POLA INTO :R_POL_ID_POLA; SUSPEND; END select * from BLOK_POLA_A(1) it return row select * from BLOK_POLA(1) no row is return (I connect to database using gds32.dll and fbclient.dll) P.S. When I use isql everything is ok Marek. |
From: Pavel C. <pc...@us...> - 2003-02-25 11:14:16
|
Hi, On 24 Feb 2003 at 19:52, Frank Schlottmann-Goedde wrote: > The readme for the qmdb installation contains the following lines: > > - Tests currently works only on Windows due to nasty stdin/stdout > redirection bug in extension classes on Linux. > > Could somone please tell me what this bug is? stdin/stdout/stderr redirection on Linux. It's in the test running classes (firebird.py). Best regards Pavel Cisar See you at the First European Firebird Conference in May in Fulda, Germany http://www.firebird-conference.com http://www.ibphoenix.com For all your upto date Firebird and InterBase information |
From: Frank Schlottmann-G. <fs...@us...> - 2003-02-24 18:53:34
|
The readme for the qmdb installation contains the following lines: - Tests currently works only on Windows due to nasty stdin/stdout redirection bug in extension classes on Linux. Could somone please tell me what this bug is? Frank -- "Fascinating creatures, phoenixes, they can carry immensely heavy loads, their tears have healing powers and they make highly faithful pets." - J.K. Rowling |
From: Larry B. <ba...@te...> - 2003-02-21 13:56:56
|
> Hi, > I'm doing a test progam that use IBEvents with a Firebird Server. I've > two servers on the same network, a Windows 2000 Server and a Linux Red-Hat 8.0 > server. Both are running Firebird 1.02 - Bd-914. > The problem is that I can't register events on the Linux server, but I can > with the Windows server, with the same application. I had this problem myself, and it took a while to figure it out. Basically, you need to have a look at your /etc/hosts file, and make 100% SURE that it is correct. For some obscure reason, the box that I set up to play with that had this problem had the actual hostname listed in the /etc/hosts file, against the loopback address!!! (Yes, it's bizarre, but it's fixed now). make SURE you don't have an incorrect entry here. The entry should look like this: "127.0.0.1 localhost localhost.localdomain" If you do have this misconfigured, what seems to happen is : 1) the client software asks the server to register an event 2) the server looks up the interface relating to the host name, and manages to come back with it's own loopback (127.0.0.1) address, instead of the ip address associated with the interface that the request came in on 3) The server opens a port on it's loopback address, for event delivery 4) The server tells the client to speak to ip 127.0.0.1, on the port number that it opened in step 3 (Which on the client happens to be on the LOCAL machine!) 5) All hell breaks loose, coz the server has an open port that never gets connected to, and the process (in classic server, at least) goes bye bye, waiting for someone to talk to it. The client tries to connect to itself, on the specified port, and more than likely gets told that the connection attempt was rejected. At this point, some internal state in GDS32.dll on the client seems to get messed up, and after this, NOTHING works as it should. I don't know if this is 100% correct, as I haven't had time to check against the sources. It sure looks to me like this is what is happening, though. (If someone could verify this, and If I'm correct, please fill out a bug fix request form). Hope this helps Larry |
From: <48...@ya...> - 2003-02-20 06:56:33
|
PGh0bWw+DQo8Ym9keT4NCjxmb250IGNvbG9yPSJmZmZmZmYiPiAgYW5lcmdp YSAsIGluYWN0aXZpdHkgIDwvZm9udD4NCjxwPllvdXIgaG9tZSByZWZpbmFu Y2UgbG9hbiBpcyBhcHByb3ZlZCE8YnI+PC9wPjxicj4NCjxwPlRvIGdldCB5 b3VyIGFwcHJvdmVkIGFtb3VudCA8YSBocmVmPSJodHRwOi8vY2FzaG91dHJl ZmkubmV0Ij5nbw0KaGVyZTwvYT4uPC9wPg0KPGJyPjxicj48YnI+PGJyPjxi cj48YnI+PGJyPjxicj48YnI+PGJyPjxicj48YnI+PGJyPjxicj48YnI+PGJy Pjxicj48YnI+PGJyPg0KPHA+VG8gYmUgZXhjbHVkZWQgZnJvbSBmdXJ0aGVy IG5vdGljZXMgPGEgaHJlZj0iaHR0cDovL2Nhc2hvdXRyZWZpLm5ldC9nb29k YnllLmh0bWwiPmdvDQpoZXJlPC9hPi48L3A+DQo8Zm9udCBjb2xvcj0iZmZm ZmZmIj4gIGFuZXJnaWEgLCBpbmFjdGl2aXR5ICA8L2ZvbnQ+DQo8L2JvZHk+ DQo8Zm9udCBjb2xvcj0iZmZmZmZmIj4NCjwvaHRtbD4NCjYzNDVRZnp6NC0x ODl2V2VtN2wxNw== |
From: Labs <la...@da...> - 2003-02-19 18:14:18
|
Ok. I´d like to test it too - and I do not fear it bites me ;) Is there any link where I could learn how to install the beta package? Thank you very much. []´s Labs |
From: AccPro C. S. P. L. <ac...@ac...> - 2003-02-19 09:36:12
|
MessageHi there, I would like to unsubscribe from the list because I have been receiving = too much SPAMMING. But... I had forgotten my password. Please, can someone advise who should I contact to unsubscribe from all = the lists.sourceforge.net? Thanks. Kelvin Chua SINGAPORE |
From: <ua...@fr...> - 2003-02-17 15:22:39
|
From: Viacheslav N T. <ta...@de...> - 2003-02-14 12:54:24
|
Thanks |
From: Paul R. <pr...@ib...> - 2003-02-14 12:01:15
|
Viacheslav N Tararin wrote: > Hi. > Where I can download TCS suite for firebird. > Thanks. > You can't. You need to check it out from CVS and build it on your platform of choice. (Except that it won't work on Win32 without a lot of work.) Binaries have never been released because the project has always considered TCS to be deprecated. Some reasons are: o Tests are stored in binary format, which renders them unsuitable for CVS. o The tests themselves are fragile - even changes in whitespace in the output will fail a test. o The interface for maintaining the tests is awkward to use. A new test suite is under development - qmdb. But you'll need to check that out of CVS, too. You will also need Python and some other stuff, but all that should be documented in the test suite. Paul -- Paul Reeves http://www.ibphoenix.com Supporting users of Firebird and InterBase |
From: Teresa G. <ang...@ea...> - 2003-02-14 11:52:55
|
<head> <title>(:**get out today**:)</title> <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859= -1"> </head> <body> <table width=3D"600" height=3D"275" border=3D"0" align=3D"center" cellpadd= ing=3D"0" cellspacing=3D"0"> <tr> <td height=3D"50" valign=3D"middle" bgcolor=3D"#333333"> <div align=3D"center"><font color=3D"#FFFFFF" size=3D"6" face=3D"Tim= es New Roman, Times, serif"><strong><font color=3D"#CCCCCC">ITS NOT A LOAN<font color=3D"#FF0000">**ITS A WAY OUT**</font></font><= /strong></font></div></td> </tr> <tr> <td height=3D"280" bgcolor=3D"#000000"> <div align=3D"center"> <table width=3D"598" height=3D"276" border=3D"0" cellpadding=3D"0"= cellspacing=3D"0"> <tr> <td height=3D"278" align=3D"left" valign=3D"middle" bgcolor=3D= "#FFFFFF"> <p align=3D"center">GET OUT OF <font color=3D"#FF0000">*D - E - B - T* <font color= =3D"#000000">Today</font></font></p> <p align=3D"center"><big>ITS EZ AS 1-2-3</big></p> <p align=3D"center">R E D U C E, C O N SO L I D = A T E, E L I M I N A T E ALL YOUR BALANCES</p> <p align=3D"center">UP TO 70% LESS THAN WHAT YOU PAY NOW</p>= <p align=3D"center"><font color=3D"#FF0000"><strong>EX.</str= ong></font> <strong><font color=3D"#FF0000">REDUCE MONTHLY PAYMENT FRO= M <font size=3D"5">$500</font> TO <font size=3D"4">$150</font></font></strong></p> <p align=3D"center"><a href=3D"http://itt...@ww...mored= ebtforyou.com/debtfree/analysisform.htm" >FIND OUT HOW NOW</a></p> <p align=3D"center"><font size=3D"1">**LIMITED TIME OFFER AP= PLY TODAY**</font></p> </td> </tr> </table> </div></td> </tr> <tr> <td height=3D"21" bgcolor=3D"#333333"><font color=3D"#CCCCCC">For remo= val from these mailings please follow this <a href=3D"http://thi...@ww...mo= redebtforyou.com/remolistdebt/debtremo.htm"><font color=3D"#FF0000">link</= font></a></font></td> </tr> </table> </body> </html> bbqcknydpqxaj ww zhq |
From: Viacheslav N T. <ta...@de...> - 2003-02-14 10:56:50
|
Hi. Where I can download TCS suite for firebird. Thanks. |
From: Martin S. <m.s...@eq...> - 2003-02-13 19:11:56
|
Hi, =20 I want to test the lastet beta of Firebird 1.5 on Windows, but I = couldn=92t find any information how to do this? Also there is no description about the new files? =20 Where can I found something abou this? =20 Mit freundlichen Gr=FCssen - best regards =20 Martin Schmid Gesch=E4ftsf=FChrer EQUITANIA GmbH Das Programmierteam Hohenzollernstr. 24 75177 Pforzheim Deutschland - Germany fon +49 7231 13810 fon +49 7231 138199 www.equitania.de mailto:in...@eq... =20 |
From: Fabiano B. <fa...@pe...> - 2003-02-13 17:10:17
|
When i had this problem i could not solve it too, but in that time i didn't try to disable DHCP. So, i had to disable the events in my app, and i didn't enabled them anymore. Maybe the problem is still there. I think the support guys should take a look in that, because it's the 3rd or 4th time (including me) i see somebody relating this problem in the newsgroup. The problem is that it's dificult to reproduce this problem. SurSSe escreveu: >Hi, >I didn't use DHCP. I always used fixed IP, but it didn't run. I think it's a >problem with linux configuration, >but I've disabled firewall, and Firebird could use the ports it need, but It >doesn't run. When I register event, >firebird hangs. > >On Wed, 12 Feb 2003 07:52:12 +0000 (UTC) fa...@pe... (Fabiano >Bonin) wrote: > > > >>Hi, i saw in the NG that it could be some problem related to the server >>IP being assigned via DHCP. >>I had this problem some time ago, in a Linux box with dinamic IP. >>Try to fix the IP and try again to see if it works. >> >>SurSSe escreveu: >> >> >> >>>Hi, >>>I'm doing a test progam that use IBEvents with a Firebird Server. I've >>>two servers on the same network, a Windows 2000 Server and a Linux Red-Hat >>> >>> >8.0 > > >>>server. Both are running Firebird 1.02 - Bd-914. >>> >>>Both servers run well, that is, I've Delphi client/server applications >>> >>> >running > > >>>OK. >>> >>>The problem is that I can't register events on the Linux server, but I can >>>with the Windows server, with the same application. Linux server report me >>>than it was impossible to make another conection to the server, because it >>> >>> >was > > >>>rejected. But with Windows Server, I can do it without problem. >>> >>>What could it be? >>> >>> >>>------------------------------------------------------- >>>This SF.NET email is sponsored by: >>>SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! >>>http://www.vasoftware.com >>>_______________________________________________ >>>Firebird-test mailing list >>>Fir...@li... >>>https://lists.sourceforge.net/lists/listinfo/firebird-test >>> >>> >>> >>> >>> >> >>------------------------------------------------------- >>This SF.NET email is sponsored by: >>SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! >>http://www.vasoftware.com >>_______________________________________________ >>Firebird-test mailing list >>Fir...@li... >>https://lists.sourceforge.net/lists/listinfo/firebird-test >> >> >> >> > > >------------------------------------------------------- >This SF.NET email is sponsored by: FREE SSL Guide from Thawte >are you planning your Web Server Security? Click here to get a FREE >Thawte SSL guide and find the answers to all your SSL security issues. >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0026en >_______________________________________________ >Firebird-test mailing list >Fir...@li... >https://lists.sourceforge.net/lists/listinfo/firebird-test > > > |
From: SurSSe <jo...@su...> - 2003-02-13 15:14:42
|
Hi, I didn't use DHCP. I always used fixed IP, but it didn't run. I think it's a problem with linux configuration, but I've disabled firewall, and Firebird could use the ports it need, but It doesn't run. When I register event, firebird hangs. On Wed, 12 Feb 2003 07:52:12 +0000 (UTC) fa...@pe... (Fabiano Bonin) wrote: > Hi, i saw in the NG that it could be some problem related to the server > IP being assigned via DHCP. > I had this problem some time ago, in a Linux box with dinamic IP. > Try to fix the IP and try again to see if it works. > > SurSSe escreveu: > >>Hi, >>I'm doing a test progam that use IBEvents with a Firebird Server. I've >>two servers on the same network, a Windows 2000 Server and a Linux Red-Hat 8.0 >>server. Both are running Firebird 1.02 - Bd-914. >> >>Both servers run well, that is, I've Delphi client/server applications running >>OK. >> >>The problem is that I can't register events on the Linux server, but I can >>with the Windows server, with the same application. Linux server report me >>than it was impossible to make another conection to the server, because it was >>rejected. But with Windows Server, I can do it without problem. >> >>What could it be? >> >> >>------------------------------------------------------- >>This SF.NET email is sponsored by: >>SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! >>http://www.vasoftware.com >>_______________________________________________ >>Firebird-test mailing list >>Fir...@li... >>https://lists.sourceforge.net/lists/listinfo/firebird-test >> >> >> > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: > SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! > http://www.vasoftware.com > _______________________________________________ > Firebird-test mailing list > Fir...@li... > https://lists.sourceforge.net/lists/listinfo/firebird-test > > |
From: tibor n. <ra...@fr...> - 2003-02-13 07:08:04
|
"Aage Johansen" wrote: > tibor nagy wrote: > > I'm new in Firebird, and can't deploy the 1.5 beta zip. > > Where can I find some "what to do" info? > > > 1. This may not be the best NG for this q. > > 2. If you want to deploy Fb it would probably be better to choose > 1.0.2. > 1.5 beta is BETA - it may bite you. Thanks, I'll do so. tibor |
From: Fabiano B. <fa...@pe...> - 2003-02-12 11:40:50
|
Hi, i saw in the NG that it could be some problem related to the server IP being assigned via DHCP. I had this problem some time ago, in a Linux box with dinamic IP. Try to fix the IP and try again to see if it works. SurSSe escreveu: >Hi, >I'm doing a test progam that use IBEvents with a Firebird Server. I've >two servers on the same network, a Windows 2000 Server and a Linux Red-Hat 8.0 >server. Both are running Firebird 1.02 - Bd-914. > >Both servers run well, that is, I've Delphi client/server applications running >OK. > >The problem is that I can't register events on the Linux server, but I can >with the Windows server, with the same application. Linux server report me >than it was impossible to make another conection to the server, because it was >rejected. But with Windows Server, I can do it without problem. > >What could it be? > > >------------------------------------------------------- >This SF.NET email is sponsored by: >SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! >http://www.vasoftware.com >_______________________________________________ >Firebird-test mailing list >Fir...@li... >https://lists.sourceforge.net/lists/listinfo/firebird-test > > > |
From: Vera G. <bt9...@ao...> - 2003-02-12 09:39:24
|
<HTML><HEAD> <META content=3D"text/html; charset=3Diso-8859-1" http-equiv=3DContent-Typ= e> <META content=3D"MSHTML 5.00.2920.0" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2> <DIV><FONT face=3DArial size=3D2> <DIV><FONT face=3DArial>According to the Wall Street Journal, home interes= t rates are currently at </FONT></DIV> <DIV><FONT face=3DArial>a 38 year low but are expected to start heading ba= ck up by March or April </FONT></DIV> <DIV><FONT face=3DArial>of this year. Perhaps this would be a good time to= pull some equity cash out</FONT></DIV> <DIV><FONT face=3DArial>of your home or just take advantage of these lower= rates to substantially</FONT></DIV> <DIV><FONT face=3DArial>reduce your monthly payments.</FONT></DIV> <DIV> </DIV> <DIV><FONT face=3DArial>It's quick and simple to see what's available and = then decide if this makes</FONT></DIV> <DIV><FONT face=3DArial>any sense for you. Of course there is not a charge= or any obligation for taking</FONT></DIV> <DIV><FONT face=3DArial>advantage of this quote service.</FONT></DIV> <DIV> </DIV> <DIV> </DIV> <DIV align=3Dleft><FONT face=3DArial> &= nbsp; &nb= sp; <A href=3D"http://200.160.253.250/index.asp?Afft=3DQM112"><FONT color=3D#0= 0b000 face=3Dverdana,arial,helvetica><B>Go here to begin</B></FONT></A></FONT></= DIV> <DIV align=3Dleft> </DIV> <DIV align=3Dleft> <STRONG>There may be no other way to so qui= ckly and easily </STRONG></DIV> <DIV align=3Dleft><STRONG>  = ; slash your monthly expenses!</STRONG></DIV> <DIV align=3Dleft> </DIV> <DIV align=3Dleft> </DIV> <DIV align=3Dleft> </DIV> <DIV> </DIV> <DIV><FONT face=3DArial><FONT size=3D1>please </FONT><A href=3D"http://200.160.253.250/automatic/index.htm "><FONT size=3D1>Go her= e to stop all future offers</FONT></A><FONT size=3D1>.</FONT></FONT></DIV> <DIV> </DIV></FONT></DIV></FONT></DIV></BODY></HTML> |
From: Aage J. <aag...@of...> - 2003-02-11 18:53:29
|
tibor nagy wrote: > I'm new in Firebird, and can't deploy the 1.5 beta zip. > Where can I find some "what to do" info? 1. This may not be the best NG for this q. 2. If you want to deploy Fb it would probably be better to choose 1.0.2. 1.5 beta is BETA - it may bite you. -- Aage J. |
From: tibor n. <ra...@fr...> - 2003-02-11 07:53:33
|
Hi! I'm new in Firebird, and can't deploy the 1.5 beta zip. Where can I find some "what to do" info? thanks tibor nagy |