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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 80699 - 80728 of 105459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
80699
... same ... output ... would ... Why? Can you explain that? Martijn Tonies Database Workbench - tool for InterBase, Firebird, MySQL, NexusDB, Oracle & MS SQL...
Martijn Tonies
martijntonie...
Offline Send Email
Nov 1, 2006
8:51 am
80700
It does seem a little sub-optimal. Have you tried a few different combinations of flags? without the -v to keep verbosity down With the -t to change the output...
Nigel Weeks
fir3nuk3
Offline Send Email
Nov 1, 2006
8:51 am
80701
... No, not really. But there's an intrinsic problem with the logic of putting that SELECT FIRST 1 inside a FOR loop. Theoretically, if the set from which...
Helen Borrie
helebor
Offline Send Email
Nov 1, 2006
9:55 am
80702
... Could be me, but that sounds like a bug or you're wrong. SELECT [FIRST] returns a resultset, which is handled by the FOR loop. Why this should "return the...
Martijn Tonies
martijntonie...
Offline Send Email
Nov 1, 2006
10:02 am
80703
... I have tried the following combination and it doesn't work: 1. gbak -b acc-0007.fdb c:\temp\a.gbk 2. gbak -b -t acc-0007.fdb c:\temp\a.gbk 3. gbak -b...
Chau Chee Yang
chaucheeyang
Offline Send Email
Nov 1, 2006
10:35 am
80704
Hello, I am just beginning to work on Firebird 2.0 and have also just joined this group. Thus I couldn't participate directly to the yesterday thread about it....
Hubert Rétif
h_retif
Offline Send Email
Nov 1, 2006
12:43 pm
80705
hi i have an (after-update) trigger which looks like the following: update dicentries set asdskrpt1 = new.asdskrpt1 where asverwid = new.id; it works fine...
martinknappe
Offline Send Email
Nov 1, 2006
12:46 pm
80706
... the select first statement is not IN the FOR loop - it DEFINES the LOOP. The LOOP ceases at the extent of the select, i.e. at the first record selected. So...
Alan McDonald
metaalan
Offline Send Email
Nov 1, 2006
12:49 pm
80707
Try gbak with the -g option. Regards Peter ________________________________ From: firebird-support@yahoogroups.com [mailto:firebird-support@yahoogroups.com] On...
Peter McLeod
peter_mc_leod1
Offline Send Email
Nov 1, 2006
1:21 pm
80708
Hello Hubert, ... You don't "need" double quotes, if your identifiers aren't reserved words. If so, or if you want to make them case sensitive, you do need...
Martijn Tonies
martijntonie...
Offline Send Email
Nov 1, 2006
1:21 pm
80709
Hi folks!!! Has anybody tried to use Firebird in a Rails application??? I'm note sure that FireRuby is the best Firebird adapter available. If anybody has a...
andersonsoffa
Offline Send Email
Nov 1, 2006
1:50 pm
80710
... Thanks Helen. I've modified the SP accordingly. Myles...
vladman992000
Online Now Send Email
Nov 1, 2006
2:31 pm
80711
... Thanks for your reply, Alan. I suspect you are correct, however I found the problem in the end. It was not specifically in this stored procedure after...
vladman992000
Online Now Send Email
Nov 1, 2006
2:32 pm
80712
Forgive my naivety, but I have a statement like so: update collection COL set COL.disp_browse = 'N' where COL.user_no = (select u.user_no from user_account u...
vladman992000
Online Now Send Email
Nov 1, 2006
2:36 pm
80713
Hello Myles, ... So, you want all COLLECTION records updated for any COL.USER_NO in the select? that use: WHERE COL.USER_NO IN (SELECT ... Martijn Tonies ...
Martijn Tonies
martijntonie...
Offline Send Email
Nov 1, 2006
2:42 pm
80714
update collection COL set COL.disp_browse = 'N' where COL.user_no IN (select u.user_no from user_account u where u.expire_date = cast('NOW' as date));...
Nick Upson
upsonn
Offline Send Email
Nov 1, 2006
2:44 pm
80715
could you go into more detail over this, one of my current projects has a lot of SP code written with "select first ... ", what magnitude of difference will it...
Nick Upson
upsonn
Offline Send Email
Nov 1, 2006
2:48 pm
80716
update collection COL set COL.disp_browse = 'N' where COL.user_no in (select u.user_no from user_account u where u.expire_date = cast('NOW' as date)); use in...
Alan McDonald
metaalan
Offline Send Email
Nov 1, 2006
2:56 pm
80717
... Thanks so much. That did the trick. Myles...
vladman992000
Online Now Send Email
Nov 1, 2006
3:21 pm
80718
... The OP actually libfbembed, not fbembed.dll. If by fbemebed you mean embedded on unix, then you're using classic, which isn't thread safe. I believe you...
Erik LaBianca
labiance
Offline Send Email
Nov 1, 2006
3:57 pm
80719
... Well, others gave you the solution with IN, but that is not "the best way", as IN can be much slower than EXISTS: update collection COL set...
Milan Babuskov
mbabuskov
Offline Send Email
Nov 1, 2006
4:01 pm
80720
Hello All, Apologies if this has been covered before, google isn't getting me very far. I'd like to be able to select rows in firebird 1.5.3 that contain ...
Erik LaBianca
labiance
Offline Send Email
Nov 1, 2006
4:14 pm
80721
... Nothing you do to gbak is going to affect the amount of physical memory the server is using, or the amount of space the operating system allocates for its...
Ann W. Harrison
annwharrison
Offline Send Email
Nov 1, 2006
5:00 pm
80722
... Hi, I had a brief look on it some months ago, and used the FireRuby adapter, don't know any other :-( The last weekend I was on a Ruby on Rails conference...
Alexandre Benson Smith
thoriblist
Offline Send Email
Nov 1, 2006
5:52 pm
80723
This is a query inside of a stored procedure. The COALESCE fields are because the SP needs to ignore that field if the caller passes in NULL. The problem is...
Rick Debay
rdebay@...
Send Email
Nov 1, 2006
6:31 pm
80724
Hi there, my issue involves these elements: - Firebird 2.0 SS RC3 - Server single processor Pentium 4 class, don't know if Intel or AMD, with enough RAM -...
Mirco Malaguti
mirmalag
Offline Send Email
Nov 1, 2006
8:56 pm
80725
I have a Firebird DB with remote clients connecting via TCP/IP. The clients use ADO.NET In the DB, there is a SP which is similar to: SELECT f1, f2 FROM T1 FOR...
sasidhardoc
Offline Send Email
Nov 1, 2006
9:11 pm
80726
Hmm, excepting that I'm a bit uncertain about colons in stored procedures (I code too few), your logic seems correct to me. Hence, I would guess that NEWONLY...
Svein Erling Tysvaer
svein_erling
Offline Send Email
Nov 1, 2006
9:22 pm
80727
Arrgghh! Adding your line to the query that was sitting there in the original test window: SELECT pbm.ID, pbm.GROUPID, pbm.RSPPATPAY, pbm.RSPDUEAMT,...
Rick Debay
rdebay@...
Send Email
Nov 1, 2006
10:21 pm
80728
... This is not valid. It looks like you forgot the 'update table' logic. ... I am not sure what would be wrong with the original statement. Perhaps you could...
Adam
s3057043
Offline Send Email
Nov 1, 2006
10:26 pm
Messages 80699 - 80728 of 105459   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