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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 97501 - 97530 of 97530   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
97501
... when I do accounting systems, one of the first things I do is design around a period (fiscal or calendar year). This makes for totaling much faster than ...
Alan McDonald
metaalan
Offline Send Email
Oct 9, 2008
8:54 pm
97502
... For developing it's rather a matter of searching around...for example, the TechInfo section at the IBObjects website has a number of papers that address...
Helen Borrie
helebor
Offline Send Email
Oct 9, 2008
10:04 pm
97503
Alexandre, thanks for the response. I am thinking we may need to quickly access random data, so a hash indexing scheme would be nice. The B*Tree also gives us...
judlian23
Offline Send Email
Oct 9, 2008
10:18 pm
97504
Two possible approaches to calculating the running balance per record that you could look at are: a) use a 'selectable stored procedure' (& calculate the...
jft
jft1308
Offline Send Email
Oct 9, 2008
11:39 pm
97505
... There is no hash index in FB, but I think you should first try FB to see if it performs good enough for you. FB uses a two-phase index scan, first it reads...
Alexandre Benson Smith
thoriblist
Offline Send Email
Oct 9, 2008
11:53 pm
97506
... I prefer to do this way.... see you ! -- Alexandre Benson Smith Development THOR Software e Comercial Ltda Santo Andre - Sao Paulo - Brazil ...
Alexandre Benson Smith
thoriblist
Offline Send Email
Oct 9, 2008
11:54 pm
97507
Hi guys I've spent hours now looking for a way to do this... There are scripts for Linux/Unix that come with Firebird for adding Aliases to the aliases.conf...
Blizzard
blizzardb2001
Offline Send Email
Oct 10, 2008
3:01 am
97508
... There is no such tool in FB. Write a simple application that the user would select the database file trough a open dialog and add it to the aliases.conf. ...
Alexandre Benson Smith
thoriblist
Offline Send Email
Oct 10, 2008
3:25 am
97509
... Yes and no: Parallel execution paths require that the one process (and multiple execution threads) are present on the one physical processor. So even if ...
Nigel Weeks
nweeks@...
Send Email
Oct 10, 2008
3:35 am
97510
... And even the file system cache would play nice, when using CS the "best bet" is to leave the cache size at the default level (75 pages) and let the file...
Alexandre Benson Smith
thoriblist
Offline Send Email
Oct 10, 2008
3:40 am
97511
... From an operating system's point of view, there's no different between a processor and core -- a "dual-core" processor is basically two physical processors...
Dean Harding
dean.harding@...
Send Email
Oct 10, 2008
4:00 am
97512
... Someone will correct me if I am wrong... but AFAIR SS has multiples threads, but the syncronization logic is not good enough and serializes the threads...
Alexandre Benson Smith
thoriblist
Offline Send Email
Oct 10, 2008
4:10 am
97513
In a similar situation I am using a selectable stored procedure, which calculates the current balance in an output variable. Emil ... Firebird ... movements ...
Emil Totev
ettotev
Offline Send Email
Oct 10, 2008
6:46 am
97514
... the transaction doesn't finish for any reason then the work done by triggers and SPs remains unfinished. The work is committed if the transaction commits...
mlq97
Offline Send Email
Oct 10, 2008
10:50 am
97515
First of all: Thank you guys for all the inputs!! So, I see that nobody uses a separate table mantained with triggers to do that, which make think I won't have...
Sergio H. Gonzalez
shg_sistemas
Offline Send Email
Oct 10, 2008
12:11 pm
97516
... Yes. A transaction is a wrapper around an atomic unit of work. Of course multiple calls to the database can (and should!) occur within a single transaction...
Adam
s3057043
Offline Send Email
Oct 10, 2008
12:15 pm
97517
... a view won't give you running balances, only ending balances I can only do running balances on the client and it requires all records being brought over...
Alan McDonald
metaalan
Offline Send Email
Oct 10, 2008
12:25 pm
97518
... Certainly within a transaction that your application has complete control of. Since you are using IBO, you can (and should) do that *as a basic*....
Helen Borrie
helebor
Offline Send Email
Oct 10, 2008
12:48 pm
97519
I expect the answer to be NO, but I want to try anyway (Firebird has its surprises from time to time): Is there a way to insert Blob data via a script command....
Stefan Heymann
stefanheymann
Offline Send Email
Oct 10, 2008
12:49 pm
97520
... The FSQL[0] script utility can load data into a blob from external files. Something like (IIRC): INSERT INTO MYTABLE (ID, BLOBFIELD) VALUES (1,...
Scott Morgan
temp1066
Offline Send Email
Oct 10, 2008
1:08 pm
97521
Thanks Helen, I'll try all of your suggestions and try to adjust things to run sweetly. ... Yup....
mlq97
Offline Send Email
Oct 10, 2008
1:12 pm
97522
... No - Firebird supports only b*tree indexes. For more information try here: http://www.ibphoenix.com/main.nfs?page=ibp_expert1 ... I'm not quite sure what...
Ann W. Harrison
annwharrison
Offline Send Email
Oct 10, 2008
3:41 pm
97523
... It is only 32,000. Ivan...
Ivan Prenosil
iprenosil
Offline Send Email
Oct 10, 2008
3:58 pm
97524
... From: Adriano dos Santos Fernandes <adrianosf@...> Subject: Re: [firebird-support] Re: unable to allocate memory exception ... Adriano, any...
unordained
tigereye_philip
Offline Send Email
Oct 10, 2008
6:24 pm
97525
Some of the columns in one of my tables contain mainly nulls, others contain very few. I am trying to improve performance of a procedure which updates many ...
mlq97
Offline Send Email
Oct 10, 2008
6:32 pm
97526
... From: "unordained" <unordained_00@...> To: firebird-support@yahoogroups.com Sent: Fri, 10 Oct 2008 13:24:49 -0500 Subject: Re: [firebird-support]...
unordained
tigereye_philip
Offline Send Email
Oct 10, 2008
6:42 pm
97527
Hi Sergio, sorry for answering late, but I didn't have any time to try out my idea before now... Since I'm normally using Firebird 1.5, I've no experience in...
Svein Erling Tysvaer
svein_erling
Offline Send Email
Oct 10, 2008
8:49 pm
97528
... What does the test look like (actual code)? ./heLen...
Helen Borrie
helebor
Offline Send Email
Oct 10, 2008
9:52 pm
97529
... Actually yes. Firebird will automatically cast a varchar to a blob, so just write your insert statement as if it were a varchar field. However there are...
Adam
s3057043
Offline Send Email
Oct 10, 2008
10:24 pm
97530
... OK, then this FAQ is incorrect: http://www.firebirdfaq.org/faq61/ Adam...
Adam
s3057043
Offline Send Email
Oct 10, 2008
10:27 pm
Messages 97501 - 97530 of 97530   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