Subject | Re: [firebird-support] Illegal use of keyword VALUE |
---|---|
Author | Jorge Andrés Brugger |
Post date | 2006-03-30T13:10:32Z |
Thank you!
Helen Borrie escribió:
Jorge Andrés Brugger
Informática
DASU - Obra Social del Personal de la Universidad Nacional de la Patagonia
Comodoro Rivadavia, Chubut, Argentina
Teléfono (0297) 446-4444 int. 103
Correo electrónico: jbrugger@...
Website: www.dasu.com.ar
[Non-text portions of this message have been removed]
Helen Borrie escribió:
> At 10:21 PM 30/03/2006, you wrote:--
>
>> Hi. Can anyone tell me what's wrong with this statement?
>>
>> CREATE TABLE RESERVAS_STOCK(CODIGO_DEPOSITO D_CODIGO_DEPOSITO NOT NULL,
>> NUMERO_TERMINAL SMALLINT NOT NULL,
>> CODIGO_PRODUCTO D_CODIGO_PRODUCTO NOT NULL,
>> CANTIDAD INTEGER NOT NULL CHECK(value > 0),
>> TIPO_RESERVA SMALLINT NOT NULL CHECK(value in (1,2)));
>>
>> It returns:
>> Unsuccessful execution caused by system error that does not preclude
>> successful execution of subsequent statements.
>> Dynamic SQL Error.
>> SQL error code = -901.
>> Illegal use of keyword VALUE.
>>
>> Using FB 1.5.3
>>
>
> When declaring a check constraint at table level, use the column
> name, not VALUE (use VALUE when applying a check constraint to a domain):
>
> CREATE TABLE RESERVAS_STOCK(CODIGO_DEPOSITO integer NOT NULL,
> NUMERO_TERMINAL SMALLINT NOT NULL,
> CODIGO_PRODUCTO integer NOT NULL,
> CANTIDAD INTEGER NOT NULL CHECK(CANTIDAD > 0),
> TIPO_RESERVA SMALLINT NOT NULL CHECK(TIPO_RESERVA in (1,2)))
>
> ./hb
>
>
>
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>
> Visit http://firebird.sourceforge.net and click the Resources item
> on the main (top) menu. Try Knowledgebase and FAQ links !
>
> Also search the knowledgebases at http://www.ibphoenix.com
>
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
Jorge Andrés Brugger
Informática
DASU - Obra Social del Personal de la Universidad Nacional de la Patagonia
Comodoro Rivadavia, Chubut, Argentina
Teléfono (0297) 446-4444 int. 103
Correo electrónico: jbrugger@...
Website: www.dasu.com.ar
[Non-text portions of this message have been removed]