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 25791 - 25820 of 105422   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25791
Hi I am looking in a few months time at renting a linux server in a data- center to host Firebird. My current ISP has said this is a bad idea, but I would like...
pchaisty
Offline Send Email
Jun 1, 2003
7:49 am
25792
I have been running 1.1 of Borland Interbase on my Solaris box and 1.5 of Firebird on ny Linux box. 1.0 of Firebird absolutely fails with a gbak (restore) of...
ray_holme
Offline Send Email
Jun 1, 2003
12:25 pm
25793
I haven't had any problems compiling and/or using IBPP on a Windows 2000 platform. I have not tried it on a Linux platform. I'm using Dev-Cpp (mingw32) to...
Javier Soques
jsoques
Offline Send Email
Jun 1, 2003
12:35 pm
25794
Ray, ... Unfortunately, it's true. Not everyone have enough time to participate in the project and actively follow the current development. ... No. ... I'm...
Dmitry Yemanov
dimitr_ex
Offline Send Email
Jun 1, 2003
12:50 pm
25795
Hi, ... Actually - WHO decides that this would be the right order: 1 11 20 A AA BA ?? What kind of order is this? This is a very custom order... With regards, ...
Martijn Tonies
martijntonie...
Offline Send Email
Jun 1, 2003
2:42 pm
25796
Hi Martijn, ... I think "the right order" is what the user/programmer needs at a certain point in the application, so it varies from case to case. Todd wants a...
Paul Vinkenoog
neckarelzer
Offline Send Email
Jun 1, 2003
3:12 pm
25797
Hi, ... Sounds like writing a custom collation then :) This really is a weird order. Perhaps you can UDF the select and order by UDF(mycol) that returns a...
Martijn Tonies
martijntonie...
Offline Send Email
Jun 1, 2003
3:18 pm
25798
... You might want to look at some of the information at ibphoenix.com or http://www.brookstonesystems.com/ on collations. Essentially a collation is a...
Ann Harrison
annwharrison
Offline Send Email
Jun 1, 2003
3:27 pm
25799
I would like to do something like this: UPDATE Child SET Child.parentCount = Child.parentCount + 1 WHERE Child.id = :childId; Because I was to increment (or...
Robert DiFalco
robert_difalco
Offline Send Email
Jun 1, 2003
4:38 pm
25800
... Yes. Regards, Ann www.ibphoenix.com We have answers....
Ann W. Harrison
annwharrison
Offline Send Email
Jun 1, 2003
5:05 pm
25801
Thanks! ... From: Ann W. Harrison [mailto:aharrison@...] Sent: Sunday, June 01, 2003 10:05 AM To: ib-support@yahoogroups.com;...
Robert DiFalco
robert_difalco
Offline Send Email
Jun 1, 2003
5:08 pm
25802
The reason I need this numerical order of a char column is because we have one codes table that includes all different kinds of codes. Some of these types of...
Todd Brasseur
todderamaa
Offline Send Email
Jun 1, 2003
6:48 pm
25803
... A UDF would be great, but you can't use a UDF in an ORDER BY statement. So I had to create the additional column. Todd...
Todd Brasseur
todderamaa
Offline Send Email
Jun 1, 2003
6:50 pm
25804
... My stored procedure seems to work. I am populating a double precision column with data from the char column. I check each character before adding it to...
Todd Brasseur
todderamaa
Offline Send Email
Jun 1, 2003
6:52 pm
25805
Hi Todd, ... I liked your puzzle, so I wrote an SP that converts chars into doubles if possible, and (if necessary) ignores any trailing non-digits, so 12XB...
Paul Vinkenoog
neckarelzer
Offline Send Email
Jun 2, 2003
12:43 am
25806
... No, I think you got it. 12XB returns 12, and 12.2A returns 12.2, but A1Q2U would return NULL because the first character is not numeric. ... I don't have...
Todd Brasseur
todderamaa
Offline Send Email
Jun 2, 2003
2:34 am
25807
... I would use another field to indicate what type of value is stored in the code field and create a two-field index. ... -- Raymond Kennington Programming...
Raymond Kennington
raymond19562002
Offline Send Email
Jun 2, 2003
3:40 am
25808
Hi heLen, am sorry, I dint checked it. I was using IB Server and IB Guardian Service. Now I had uninstalled it and reinstalled Firebird Server. Lets see if the...
Kiran
kirankurapaty
Offline Send Email
Jun 2, 2003
6:30 am
25809
... No; but the SQL help for IB 6 plus the extra stuff in the Firebird 1 release notes (which are PDF, so you can keep them on-line) will do it for FB 1.0.x;...
Helen Borrie
helebor
Offline Send Email
Jun 2, 2003
7:17 am
25810
Dear list, I have a file of several million records in csv style format. Is there a utility or api that will let me load these efficiently? By efficiently I ...
Mark Kirkwood
markir1
Offline Send Email
Jun 2, 2003
7:53 am
25811
Hi Mark, ... Use prepared statements - that's a lot faster. If you like, you can try Database Workbench and the CSV import - see www.upscene.com for a trial...
Martijn Tonies
martijntonie...
Offline Send Email
Jun 2, 2003
7:59 am
25812
Hi Mark, you can declare an Table as an external file and use this to import your data: create table ext_tbl external file 'file.txt' ( fname char(10), ...
Stengel Christian
christian_stengel@...
Send Email
Jun 2, 2003
10:43 am
25813
Hi, I have two tables, product and temp with the following structures product ... id integer NOT NULL (PK) desc varchar(50) NOT NULL stock...
Ben Johnson
ben_johns@...
Send Email
Jun 2, 2003
11:20 am
25814
... Yes and yes. Correct syntax is UPDATE product P SET P.stock = (select T.stock from temp T where P.id = T.product_id) ; where exists(select 1 from temp t2...
Svein Erling Tysvaer
svein_erling
Offline Send Email
Jun 2, 2003
11:32 am
25815
Hi Ben, ... you probably should only update those products with existing product related records in temp? Try: UPDATE product P SET P.stock = (select T.stock...
Thomas Steinmaurer
iblogmanager
Offline Send Email
Jun 2, 2003
11:34 am
25816
I am configuring ODBC firebird driver to work with Visual FoxPro, and the ODBC is correct. With IBExpert, the conexión is correct. But when try open a table...
Jose Romero
jromero_arg
Offline Send Email
Jun 2, 2003
11:46 am
25817
A Firebird 1 database. It used to run very fast, lately it has become very slow. gdb is about 60 MB. I am having a copy in my developement machine and from...
Raigo Lukk
raigo.lukk.001@...
Send Email
Jun 2, 2003
11:48 am
25818
... = "How long is a piece of string?" What is the SQL statement? heLen...
Helen Borrie
helebor
Offline Send Email
Jun 2, 2003
11:54 am
25819
Restore-Backup is always good option. That builds you new database file Riho-Rene Ellermaa senior programmer...
Riho-Rene Ellermaa
rihoe
Offline Send Email
Jun 2, 2003
11:54 am
25820
Hi, ... Did you check your queries and why they are slow? With regards, Martijn Tonies Database Workbench - the developer tool for InterBase & Firebird Upscene...
Martijn Tonies
martijntonie...
Offline Send Email
Jun 2, 2003
11:54 am
Messages 25791 - 25820 of 105422   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