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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 105460 - 105489 of 106522   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date v
105489
... Oh, thats another thing I have been wondering... does the object name length matter (when keeping query speed in mind)? I do have a habit to use prefixes...
ainpoissee
Offline Send Email
Nov 13, 2009
1:01 pm
105488
... No. But... you don't have to believe me. Just try both variants and report the difference here. SY, SD....
Dimitry Sibiryakov
aafemt
Offline Send Email
Nov 13, 2009
12:58 pm
105487
... Really? Is the new over the wire protocol optimized for such a cases (ie when integer value fits into one byte it would be sent as one byte, not as four)? ...
ainpoissee
Offline Send Email
Nov 13, 2009
12:47 pm
105486
... Won't work for a char(16) though. It's always 16 characters long, with significant trailing blanks on any non-null values that are shorter than 16. ...
Helen Borrie
helebor
Offline Send Email
Nov 13, 2009
12:25 pm
105485
... BTW: This only works if stockcode is varchar, for char you would need char_length(trim(stockcode)) <> 16. Mark -- Jetzt kostenlos herunterladen: Internet...
Mark Rotteveel
Avalanche1979@...
Send Email
Nov 13, 2009
12:23 pm
105484
... I'd go for: where char_length(stockcode) <> 16 Mark -- GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter...
Mark Rotteveel
Avalanche1979@...
Send Email
Nov 13, 2009
12:19 pm
105483
... stockcode containing ' ' SY, SD....
Dimitry Sibiryakov
aafemt
Offline Send Email
Nov 13, 2009
11:54 am
105482
I have a stockcode field in the stock table which is a char type. Usually it is left padded with 0 and have 16 characters. If I want to varify of there are...
nvdheever
Offline Send Email
Nov 13, 2009
11:43 am
105481
In cases I don't want to reveal the code of the procedure (*given* that users don't really want to decompile the BLR as long as they do see code in the...
Lucas Franzen
biber_et_luc
Offline Send Email
Nov 13, 2009
9:25 am
105480
... No, it doesn't. But decompilation of BLR isn't extremely difficult, so deleting of sources can give you only illusion of safety. SY, SD....
Dimitry Sibiryakov
aafemt
Offline Send Email
Nov 13, 2009
9:01 am
105479
Hi ... Be aware, however, that this prevents usual backup/restore. Regards, Steffen [Non-text portions of this message have been removed]...
Steffen Heil
heilsteffen
Offline Send Email
Nov 13, 2009
8:21 am
105478
... you can delete the trigger, procedure code after compiling BLR. ... I don't think you can realistically not reveal the SYSDBA password. What happens when...
Alan McDonald
metaalan
Offline Send Email
Nov 12, 2009
10:52 pm
105477
The security of your stored procedures relies on blocking physical access to the database file. (For example: You can always open the database file with...
Steffen Heil
heilsteffen
Offline Send Email
Nov 12, 2009
7:02 pm
105476
I'm considering bundling a Firebird database file and Firebird server installer with some vertical market software of ours that is not open source. I'm trying...
Myles Wakeham
vladman992000
Online Now Send Email
Nov 12, 2009
6:00 pm
105475
It won't make a difference when you have "longer" db object names - it makes sense when you keep them as short as possible. Two, three characters more in names...
Marcin Bury
marcinbury
Offline Send Email
Nov 12, 2009
4:39 pm
105474
... You won't notice any performance difference even if your "a lot" has 9 zeros. SY, SD....
Dimitry Sibiryakov
aafemt
Offline Send Email
Nov 12, 2009
4:36 pm
105473
... SMALLINT? With regards, Martijn Tonies Upscene Productions http://www.upscene.com Download Database Workbench for Oracle, MS SQL Server, Sybase SQL ...
Martijn Tonies
martijntonie...
Offline Send Email
Nov 12, 2009
4:33 pm
105472
... It would send 4 bytes while one would do... as I sayd a lot of those records would be sent back and forth between client and serves and to optimize for...
ainpoissee
Offline Send Email
Nov 12, 2009
4:27 pm
105471
... Use Integer. SY, SD....
Dimitry Sibiryakov
aafemt
Offline Send Email
Nov 12, 2009
3:23 pm
105470
Hi, What would be the best data type for a 8 bit flags field? My first thought was to use CHAR(1) CHARACTER SET OCTETS (I guess OCTETS should be preferred over...
ainpoissee
Offline Send Email
Nov 12, 2009
3:04 pm
105469
Please read 'An Auditable Series of Numbers' if it matters whether the series are unbroken or not. You can find it here:...
Svein Erling Tysvær
svein_erling
Offline Send Email
Nov 12, 2009
11:47 am
105468
You should consider using generator for this. CREATE GENERATOR table_gen; SET GENERATOR table_gen TO 1; And then: update table_name set field1 =...
Sándor Tamás ...
santa750602
Offline Send Email
Nov 12, 2009
11:38 am
105467
Hello! every people I need values increase sequentially for fill the field, for example: i have the table (5 record): field1 field2 field3 null...
jesus
sierraja2000
Offline Send Email
Nov 12, 2009
11:34 am
105466
... Actually, any pointer to one-byte array would work, but PByte is harder to fill with meaningful database connection string, no? SY, SD....
Dimitry Sibiryakov
aafemt
Offline Send Email
Nov 12, 2009
9:28 am
105465
... seems like PByte might work - am I setting myself up though? Alan...
Alan McDonald
metaalan
Offline Send Email
Nov 12, 2009
9:08 am
105464
... I'd say that Ansi Chars is the only way to call the function. Wide Chars won't work. ... If you use isc_dpb_utf8_filename in 2.5 you can use unitode (utf8 ...
Dimitry Sibiryakov
aafemt
Offline Send Email
Nov 12, 2009
8:43 am
105463
Just checking... I can’t call isc_attach_database(@(hdbc^.status), 0,@DATABASE,@(hdbc^.db_handle),i, @dpb); with PAnsiChars for DATABASE and UserName and...
Alan McDonald
metaalan
Offline Send Email
Nov 12, 2009
1:53 am
105462
... Probably, but that's an artifact of implementation that may change arbitrarily in the future. Or, horrors, you may find that you've got data where zero or...
Ann W. Harrison
annwharrison
Offline Send Email
Nov 11, 2009
6:01 pm
105461
I was wondering if there was some way to handle columns with NULL values without using indicator variables. If I were to initialize all host variables to some...
sboydlns
Offline Send Email
Nov 11, 2009
4:45 pm
105460
... Thank you for suggestions, but, what I would like to achieve is to log changes within same transaction, I can do that by modifying application code, but it...
Sofija Blazevski
sosingus
Offline Send Email
Nov 11, 2009
10:13 am
Messages 105460 - 105489 of 106522   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

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