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 to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 105404 - 105433 of 105433   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
105404
Hello, I am getting a strange error "cannot attach to password database" intermittently. The stack trace is listed below. We are using firebird 2.1.3 with...
javakqj
Offline Send Email
Nov 6, 2009
6:46 pm
105405
... What Firebird architecture you used (SS\CS) ? ... Is it happens again after Firebird restart ? Regards, Vlad...
Vlad Khorsun
fbvlad
Offline Send Email
Nov 6, 2009
9:05 pm
105406
... Download debug kit for the same Firebird version as you used on client side. Put fbclient.pdb at the same folder as fbclient.dll. Follow instructions below...
Vlad Khorsun
fbvlad
Offline Send Email
Nov 6, 2009
9:18 pm
105407
We are using Classic . ThanksJD ... From: Vlad Khorsun <hvlad@...> Subject: Re: [firebird-support] Cannot attach to password database To:...
Kanka sumatra
javakqj
Offline Send Email
Nov 6, 2009
11:32 pm
105408
Sorry forgot to answer your question : Is it happens again after Firebird restart ? I have not restarted the Firebird as the tests are running. As I have...
Kanka sumatra
javakqj
Offline Send Email
Nov 6, 2009
11:39 pm
105409
Greets. I wrote some code a couple years back that is getting an update into more modular/OO/reusable code. I created a base object with a DB handle that is...
Kurt Federspiel
federonline
Offline Send Email
Nov 7, 2009
12:48 am
105410
... Sorry, but having 500 database connections just to please your application OO design doesn't look reasonable at all ;-) ... Connections are more or less...
Dmitry Yemanov
dimitr_ex
Offline Send Email
Nov 7, 2009
7:47 am
105411
Hello, I sent an identical message from an mail-client but have had no response if it had reached the group. As I am not so familiar in using newsgroups, I am...
sosingus
Offline Send Email
Nov 7, 2009
12:15 pm
105412
... None. ... Explain what you want to achieve and also what version of Firebird you are working with. ./heLen...
Helen Borrie
helebor
Offline Send Email
Nov 7, 2009
12:24 pm
105413
... I would like to be able to make an general procedure that would log every (or only configured) DML operations over all or over configured tables in my...
sosingus
Offline Send Email
Nov 7, 2009
12:41 pm
105414
... No way. But you can use IBLogManager. SY, SD....
Dimitry Sibiryakov
aafemt
Offline Send Email
Nov 7, 2009
12:50 pm
105415
... Thanks for the answers, I guess I'll have to think of something else, as I would like to have it as an application functionality that can be turned on and...
sosingus
Offline Send Email
Nov 7, 2009
1:08 pm
105416
Hi You might be able to write a triggers for the system tables that manage the data tables layout. Upon field creation, that trigger might execute code to add...
Steffen Heil
heilsteffen
Offline Send Email
Nov 7, 2009
3:36 pm
105417
... I've tried adding triggers to system table, it is possible. Though, I never tried how would they work as I don't know which table to use for this. I...
sosingus
Offline Send Email
Nov 7, 2009
3:59 pm
105418
... table to use for this. ... Do check whether your triggers (on system tables) will survive a backup-restore cycle. -- Aage J....
Aage Johansen
megselv2
Offline Send Email
Nov 7, 2009
4:33 pm
105419
... They won't. Gbak doesn't look for user triggers on system tables so they're not backed up and not restored. They can be recreated after each restore if...
Ann W. Harrison
annwharrison
Offline Send Email
Nov 7, 2009
6:14 pm
105420
I am totally new to Firebird -- sorry if my questions are basic. My objective is to be able to create an application using c# in VS2008 Express Edition which...
tracemaker618
Offline Send Email
Nov 7, 2009
8:14 pm
105421
... The Firebird documentation refers to Firebird's own componentry, not to the various host language interface layers that developers have to choose from when...
Helen Borrie
helebor
Offline Send Email
Nov 7, 2009
9:21 pm
105422
Hi I have a problem with using as parameter sub selection result f.e.: select main_table.* (select first 1 second_table.some_field from second_table where...
piotr.olszewski@...
piotr.olszew...
Offline Send Email
Nov 8, 2009
11:30 pm
105423
Piotr If you don't need check_field in yout result_set then query will look like that: select main_table.* from main_table where exists (select 1 from...
Marcin Bury
marcinbury
Offline Send Email
7:33 am
105424
... Why do you use such strange syntax at all? Don't Sybase have JOINs? select main_table.*, second_table.some_field as check_field, third_table.some_field as...
Dimitry Sibiryakov
aafemt
Offline Send Email
8:50 am
105425
... But isn't it rather complicated to achieve the "first 1" semantics in the OP's way using joins? How would you suggest to do that? (Not that I can't see a...
Kjell Rilbe
krilbe
Offline Send Email
9:00 am
105426
... Not so complicated if you note that original subselects don't have ORDER BY clause. ... Use aggregates. Because order is not set, MAX() will work not worse...
Dimitry Sibiryakov
aafemt
Offline Send Email
9:10 am
105427
... Yes. Noted. Wonder what Piotr actually wanted to achieve... ... Right, works since there are no order by in the subselects. But what if there were?? But...
Kjell Rilbe
krilbe
Offline Send Email
9:18 am
105428
... Derived tables or SP/EB. SY, SD....
Dimitry Sibiryakov
aafemt
Offline Send Email
9:26 am
105429
I sometimes have similar requirements, and typically I then do (assuming it was second_table I wanted only the first match of): select m.*, s.some_field as...
Svein Erling Tysvær
svein_erling
Offline Send Email
9:54 am
105430
Hi, I think I have found solution to this problem for our specific case. It seems to be due to the use of multiple CPU's. From the following article it seems...
jay_r42@...
jay_r42...
Offline Send Email
12:14 pm
105431
... Since you use Firebird 1.5, please note that they would be gone after backup+restore Anyway, what you would have to do is create a trigger on RDB$RELATIONS...
Milan Babuskov
mbabuskov
Offline Send Email
2:27 pm
105432
Hi, What's the "easiest way" to get the correct result for MOD(5.3, 2.0) from a Firebird 2.1? select mod(5.3, 2.0) from rdb$database returns 1 instead of 1.3 ...
ionutz gorea
ionutz_gorea
Offline Send Email
6:34 pm
105433
Hi, No way. MOD is working with integers. http://www.firebirdsql.org/refdocs/langrefupd21-intfunc-mod.html Gabor...
Gabor Boros
gaborboros
Offline Send Email
8:17 pm
Messages 105404 - 105433 of 105433   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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