Search the web
Sign In
New User? Sign Up
firebird-support · Support for Users of Firebird Releases
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 65825 - 65854 of 99492   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
65825
... I have done a test and I can connect to the db with ISQL. Regards Guido...
Guido Klapperich
gklapperich
Offline Send Email
Sep 1, 2005
8:26 am
65826
... Next time just replace security database file with fresh one (from installation). ... The message"unavailable database" does not mean that database file...
Ivan Prenosil
iprenosil
Offline Send Email
Sep 1, 2005
9:09 am
65827
I think this is all wrong and I hope the next version takes these comments into consideration. For a long time I have created DBs with non-SYSDBA ownership. ...
Alan McDonald
metaalan
Offline Send Email
Sep 1, 2005
9:53 am
65828
... Why? ... Well, if you must...you drop the constraint. Obviously, you will have to drop any referencing foreign key constraints first. But what do you...
Helen Borrie
helebor
Offline Send Email
Sep 1, 2005
10:44 am
65829
Dear colleagues! I am glad to present to you the first issue of "The InterBase and Firebird Developer Magazine". It is a free electronic magazine in PDF. You...
akovjazin
Offline Send Email
Sep 1, 2005
10:45 am
65830
... I think condition ("LogDate" BETWEEN 'Date1' and 'Date2') AND (("Field1"='String1') OR ("Field2"='string1')) will hardly use "LogDate","Field1","Field2"...
Adomas Urbanavicius
rtislri
Offline Send Email
Sep 1, 2005
12:26 pm
65831
... There still is: http://fbexport.sourceforge.net Just combine it with "isql -x" -- Milan Babuskov http://www.flamerobin.org...
Milan Babuskov
mbabuskov
Offline Send Email
Sep 1, 2005
1:49 pm
65832
Guido, ... OK, then the bad table may be one of the user accessible system tables. I'd try select count (*) from RDB$RELATIONS, the RDB$RELATION_FIELDS, the...
Ann W. Harrison
annwharrison
Offline Send Email
Sep 1, 2005
1:57 pm
65833
... If this part of your query is reasonably selective "LogDate" BETWEEN 'Date1' and 'Date2' than simple index on LogDate should be enough. If you think that...
Ivan Prenosil
iprenosil
Offline Send Email
Sep 1, 2005
2:08 pm
65834
... It was the table SYS$DMLCACHE. I use this table for the DML Caching mechanism of IBO. Regards Guido...
Guido Klapperich
gklapperich
Offline Send Email
Sep 1, 2005
2:10 pm
65835
... OK - good that it wasn't one of the database system tables. Best, Ann...
Ann W. Harrison
annwharrison
Offline Send Email
Sep 1, 2005
2:34 pm
65836
... Actually... There was an port of Firebird to Pocket PC back when it first was released as open source. Whoever did the port is no longer maintaining it,...
George P Boutwell
gboutwel@...
Send Email
Sep 1, 2005
2:44 pm
65837
Thanks to HeLen, Adam and Alan for their replies. For information, tried dropping the constraints and re-adding the PK, set the sort order to descending and...
Tony Masefield
polsolsa
Offline Send Email
Sep 1, 2005
3:24 pm
65838
Hi friends: I want to do a SQL query like this in firebird: select A.nam, isnull(A.f1,0) from table1 as B left join table2 as A on A.f2=B.Cod Or select case...
Oscar Villacis
oscarvillacisz
Offline Send Email
Sep 1, 2005
3:25 pm
65839
... But existence of ascending or descending PK has nothing to do with the appearance of data. If you need them ordered, you always have to use ORDER BY. Ivan...
Ivan Prenosil
iprenosil
Offline Send Email
Sep 1, 2005
3:34 pm
65840
Use coalesce in place of your psuedofunction isnull: select A.nam, coalesce(A.f1,0) from table1 as B left join table2 as A on A.f2=B.Cod...
Jason Dodson
dirtyrentedmule
Offline Send Email
Sep 1, 2005
3:41 pm
65841
Hi there guys, I have a table like ID INTEGER TIMEIN TIME TIMEOUT TIME populates with records like 1 Time1 <Null> 2 <Null> Time2 3 Time3 <Null> 4 <Null> Time4...
d_dude_2003
Offline Send Email
Sep 1, 2005
3:49 pm
65842
Ok. We've discovered that the issue is due to the fact that a table has more than one row with the same primary key value in it. It sounds impossible but it is...
spongebob7487
Offline Send Email
Sep 1, 2005
3:53 pm
65843
... No. There is no "default sort order". Changing the direction of an index does not "change sort order", since there is no "sort order" to begin with and...
Helen Borrie
helebor
Offline Send Email
Sep 1, 2005
4:07 pm
65844
... No, you have to test for nulls explicitely WHERE (TIMEIN > Param1 OR Param1 IS NULL) AND ... Ivan...
Ivan Prenosil
iprenosil
Offline Send Email
Sep 1, 2005
4:08 pm
65845
... As Ivan points out, that won't work. Let me be even more clear. In the absence of an ORDER BY clause, data is returned in storage order, which is...
Ann W. Harrison
annwharrison
Offline Send Email
Sep 1, 2005
4:10 pm
65846
I'm creating a domain that's CHAR(11) and I'd like to add a check to make sure all the characters are numeric. I'm experiencing a brain freeze right now and...
Rick Debay
rdebay@...
Send Email
Sep 1, 2005
4:17 pm
65847
... CHECK (Value BETWEEN '00000000000' AND '99999999999') Ivan...
Ivan Prenosil
iprenosil
Offline Send Email
Sep 1, 2005
4:26 pm
65848
d_dude_2003 wrote: > Hi there guys, > > I have a table like > > ID INTEGER > TIMEIN TIME > TIMEOUT TIME > > populates with records like > 1 Time1 <Null> > 2...
Mauro Formigoni Junior
m_formigoni
Offline Send Email
Sep 1, 2005
4:45 pm
65849
Hello What's the meaning of this log entry in the firebird.log: AAACHD111 (Server) Thu Sep 01 06:27:58 2005 Database: D:\A2318\DBINTERBASE\DATABASE.GDB ...
Henner Kollmann
henner_kollmann
Offline Send Email
Sep 1, 2005
5:16 pm
65850
... Not quite ... this will allow '0A'. I have recently had to coerce some character columns with garbage data into numerics in another SQL dialect. I believe...
David Johnson
johnson_dave...
Offline Send Email
Sep 1, 2005
5:25 pm
65851
Deadlock is a situation when two processes, each having a lock on one piece of data, attempt to acquire a lock on the other's piece. Each process would wait...
Mauro Formigoni Junior
m_formigoni
Offline Send Email
Sep 1, 2005
5:35 pm
65852
I changed 'length' to 'strlen' and added the UDFs length and strlen. What's transform? ... From: firebird-support@yahoogroups.com ...
Rick Debay
rdebay@...
Send Email
Sep 1, 2005
5:41 pm
65853
... oops, sorry. ... Long/ugly, but without UDF: CHECK ( SUBSTRING(Value FROM 1 FOR 1) BETWEEN '0' AND '9' AND SUBSTRING(Value FROM 2 FOR 1) BETWEEN '0' AND...
Ivan Prenosil
iprenosil
Offline Send Email
Sep 1, 2005
5:46 pm
65854
transform takes the data in the specified column and transforms all of the characters that are in the first set of arguments to the corresponding characters in...
David Johnson
johnson_dave...
Offline Send Email
Sep 1, 2005
6:01 pm
Messages 65825 - 65854 of 99492   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help