RE: [firebird-support] info

2017-12-22 Thread hv...@users.sourceforge.net [firebird-support]
> If I try the select, I don’t have any record where realindex is null Check RDB$INDEX_INACTIVE for non-zero\not-null values Regards, Vlad

RE: [firebird-support] info

2017-12-22 Thread 'Paul Beach' pbe...@mail.ibphoenix.com [firebird-support]
> If I try the select, I don’t have any record where realindex is null Then I would next check the database for any possible problems... corruption etc. http://www.ibphoenix.com/resources/documents/how_to/doc_5 Regards Paul

RE: [firebird-support] info

2017-12-22 Thread Nico Speleers nico.spele...@carfac.com [firebird-support]
.com/carfacbvba> Van: 'Paul Beach' pbe...@mail.ibphoenix.com [firebird-support] [mailto:firebird-support@yahoogroups.com] Verzonden: vrijdag 22 december 2017 13:16 Aan: firebird-support@yahoogroups.com Onderwerp: RE: [firebird-support] info Try the following... Partner index description

RE: [firebird-support] info

2017-12-22 Thread 'Paul Beach' pbe...@mail.ibphoenix.com [firebird-support]
Try the following... Partner index description not found (175)) internal gds software consistency check (partner index description not found. Missing index for a primary or a foreign key. The problem may be caused by physical database corruption or by a bug. Recovery process: To find the

Re: [firebird-support] info

2017-12-22 Thread Mark Rotteveel m...@lawinegevaar.nl [firebird-support]
On 22-12-2017 10:29, Nico Speleers nico.spele...@carfac.com [firebird-support] wrote: This is the third topic you started with the non-descriptive subject "info". In the future, could you please come up with a succinct but informative subject when posting? Subjects should summarize your

Re: [firebird-support] info

2017-12-22 Thread Mark Rotteveel m...@lawinegevaar.nl [firebird-support]
On 22-12-2017 10:29, Nico Speleers nico.spele...@carfac.com [firebird-support] wrote: > Problem > Engine Error (code = 335544333): internal Firebird consistency check (partner > index description not found (175), file: idx.cpp line: 1271). > SQL error (code = -902): Unsuccessful execution

[firebird-support] info

2017-12-22 Thread Rustam Musa-Akhunov rusta...@ukr.net [firebird-support]
Try declare column ORDERTYPEDESCRIPTION without 'COLLATE UNICODE_CI_AI' and see results. What default character set has your DB (used in CREATE DATABASE) and what character set you use at connection?

RE: [firebird-support] info

2017-12-22 Thread Nico Speleers nico.spele...@carfac.com [firebird-support]
hdc-software-nv>[Twitter]<https://twitter.com/carfacbvba> Van: Рустам Муса-Ахунов rusta...@ukr.net [firebird-support] [mailto:firebird-support@yahoogroups.com] Verzonden: vrijdag 22 december 2017 10:38 Aan: firebird-support@yahoogroups.com Onderwerp: [firebird-support] info Show you INSE

[firebird-support] info

2017-12-22 Thread Nico Speleers nico.spele...@carfac.com [firebird-support]
Hello, I have a problem with inserting a row in table OrderTypeDescriptions. Here you can find the sql script for the tables OrderTypes and OrderTypeDescriptions. CREATE TABLE ORDERTYPES ( ID INTEGER GENERATED BY DEFAULT AS IDENTITY NOT NULL, STOCKORDER BOOLEAN DEFAULT FALSE

[firebird-support] info

2017-12-22 Thread Рустам Муса-Ахунов rusta...@ukr.net [firebird-support]
Attachments in you email is dropped. Try describe you problem with words.

[firebird-support] info

2017-12-22 Thread Nico Speleers nico.spele...@carfac.com [firebird-support]
Hello, I have a problem with inserting a row in table OrderTypeDescriptions. Here you can find the sql script for the tables OrderTypes and OrderTypeDescriptions. CREATE TABLE ORDERTYPES ( ID INTEGER GENERATED BY DEFAULT AS IDENTITY NOT NULL, STOCKORDER BOOLEAN DEFAULT FALSE

RE: [firebird-support] Info

2017-12-20 Thread 'Zoran' zoran...@gmail.com [firebird-support]
)? Thanks. Zoran From: firebird-support@yahoogroups.com [mailto:firebird-support@yahoogroups.com] Sent: Tuesday, December 19, 2017 2:29 PM To: firebird-support@yahoogroups.com Subject: Re: [firebird-support] Info Hello Nico, Wednesday, December 20, 2017, 4:34:09 AM, you wrote

[firebird-support] Info

2017-12-20 Thread Рустам Муса-Ахунов rusta...@ukr.net [firebird-support]
As I answer you on your first time question - use this query to get next ID. Then supply this ID in your next INSERT query. select    gen_id(GEN_TABLENAME, 1) from RDB$DATABASE Where GEN_TABLENAME - generator for your A.ID column. In this case you not need to declare you column as IDENTITY.

Re: [firebird-support] Info

2017-12-19 Thread Helen Borrie hele...@iinet.net.au [firebird-support]
Hello Nico, Wednesday, December 20, 2017, 4:34:09 AM, you wrote: > CREATE TABLE ADDRESSES ( > IDINTEGER GENERATED BY DEFAULT AS IDENTITY NOT NULL, > ADDRESSNAME VARCHAR(100) COLLATE UNICODE_CI_AI, > Id = 1 / AddressName = Test / .. > Id = 2 /

Re: [firebird-support] Info

2017-12-19 Thread Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
19.12.2017 16:34, Nico Speleers nico.spele...@carfac.com [firebird-support] wrote: > I want to know the next Id number in my table Addresses without an insert. In > my example > it will be 3. I want to reserve (without an insert) Id number 3 because > someone else can > also ask the next Id

[firebird-support] Info

2017-12-19 Thread Nico Speleers nico.spele...@carfac.com [firebird-support]
Hi, Ex. CREATE TABLE ADDRESSES ( IDINTEGER GENERATED BY DEFAULT AS IDENTITY NOT NULL, ADDRESSNAME VARCHAR(100) COLLATE UNICODE_CI_AI, STREETNAMEVARCHAR(100) COLLATE UNICODE_CI_AI, STREETNUMBER VARCHAR(100) COLLATE

[firebird-support] info

2017-12-06 Thread Рустам Муса-Ахунов rusta...@ukr.net [firebird-support]
select   gen_id(GEN_XXX, 1) from RDB$DATABASE Where GEN_XXX - generator for your A.ID column

[firebird-support] info

2017-12-06 Thread Nico Speleers nico.spele...@carfac.com [firebird-support]
Hello, Ex. Table A Id (AutoInc) Description Id = 1 / Description = Test Id = 2 / Description = Test2 I want to know the next Id number in my table without an insert. In my example it will be 3. I want to reserve (without an insert) Id number 3 because someone else can also ask the next Id

Re: [firebird-support] info

2017-01-05 Thread Ann Harrison aharri...@ibphoenix.com [firebird-support]
On Wed, Jan 4, 2017 at 9:41 AM, Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support] < firebird-support@yahoogroups.com> wrote: We want to create table- and fieldnames (Firebird 3) in camelcase. If we > want to write a select statement we have to use quotes around a tablename.

Re: Re: [firebird-support] info

2017-01-05 Thread liviuslivius liviusliv...@poczta.onet.pl [firebird-support]
olve this. Kind Regards, Arno Brinkman ABVisie -Oorspronkelijk bericht- From: Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support] Sent: Thursday, January 5, 2017 10:36 AM To: firebird-support@yahoogroups.com Subject: RE: [firebird-support] info Based on table- and columnna

Re: [firebird-support] info

2017-01-05 Thread Slavomir Skopalik skopa...@elektlabs.cz [firebird-support]
ag 5 januari 2017 10:23 > Aan: firebird-support@yahoogroups.com > Onderwerp: Re: [firebird-support] info > > 05.01.2017 8:51, Nico Speleers - Carfac BVBA nico.spele...@carfac.com > [firebird-support] > wrote: >> If I execute Create table MyTable(aField integer) then the

Re: [firebird-support] info

2017-01-05 Thread 'Arno Brinkman' fbsupp...@abvisie.nl [firebird-support]
5, 2017 10:36 AM To: firebird-support@yahoogroups.com Subject: RE: [firebird-support] info Based on table- and columnnames in camelcase our programmers can automatic create their objects and classes. Therefore we need to create our table- and columnnames in camelcase. Another reason is readabi

Re: [firebird-support] info

2017-01-05 Thread 'Martijn Tonies (Upscene Productions)' m.ton...@upscene.com [firebird-support]
Hello Nico, >I want to create a tablename in camelcase without using quotes. > >If I execute Create table MyTable(aField integer) then the tablename is >saved as MYTABLE. And yes then you can use camelcase >without quotes. > >Can you find a solution ? The only solution to preserving case, is to

Re: [firebird-support] info

2017-01-05 Thread Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
05.01.2017 10:36, Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support] wrote: > Have you got a solution for my problem ? There is no solution for your problem. -- WBR, SD.

RE: [firebird-support] info

2017-01-05 Thread Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support]
] Verzonden: donderdag 5 januari 2017 10:23 Aan: firebird-support@yahoogroups.com Onderwerp: Re: [firebird-support] info 05.01.2017 8:51, Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support] wrote: > If I execute Create table MyTable(aField integer) then the tablename is sa

Re: [firebird-support] info

2017-01-05 Thread Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
05.01.2017 8:51, Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support] wrote: > If I execute Create table MyTable(aField integer) then the tablename is saved > as MYTABLE. Why do you care how it is saved? Just don't look into system tables when writing your queries. --

RE: [firebird-support] info

2017-01-04 Thread Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support]
Onderwerp: Re: [firebird-support] info 04.01.2017 15:41, Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support] wrote: > We want to create table- and fieldnames (Firebird 3) in camelcase. If > we want to write a select statement we have to use quotes around a >

Re: [firebird-support] info

2017-01-04 Thread 'Martijn Tonies (Upscene Productions)' m.ton...@upscene.com [firebird-support]
Hello Nico, If you want the case preserved, you have to use double quotes, always. With regards, Martijn Tonies Upscene Productions http://www.upscene.com Database Workbench - developer tool for Oracle, MS SQL Server, PostgreSQL, SQL Anywhere, MySQL, InterBase, NexusDB and Firebird. We want

Re: [firebird-support] info

2017-01-04 Thread Dimitry Sibiryakov s...@ibphoenix.com [firebird-support]
04.01.2017 15:41, Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support] wrote: > We want to create table- and fieldnames (Firebird 3) in camelcase. If we want > to write a > select statement we have to use quotes around a tablename. This is not > userfriendly. Is > there a

[firebird-support] info

2017-01-04 Thread Nico Speleers - Carfac BVBA nico.spele...@carfac.com [firebird-support]
We want to create table- and fieldnames (Firebird 3) in camelcase. If we want to write a select statement we have to use quotes around a tablename. This is not userfriendly. Is there a way that we don't have to use the quotes in SQL-statements ? We don't want to create our table- and fieldnames