Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: COMPATIBLE parameter not being read...why?

Re: COMPATIBLE parameter not being read...why?

From: Sybrand Bakker <postmaster_at_sybrandb.demon.nl>
Date: Tue, 10 Aug 1999 19:18:42 +0200
Message-ID: <934305532.14577.0.pluto.d4ee154e@news.demon.nl>


Could it be your string is too short
7.3.4.0
against
7.3.0.0.0
Sometimes Oracle can be very stupid.
I'm not sure why you want to create a check(c1 is not null) constraint on a column, which is already mandatory.
Just asking...

Hth,

Sybrand Bakker, Oracle DBA

Christopher Allen <progplusSPAMBEGONE_at_gte.net> wrote in message news:zIYr3.242$P36.11560_at_dfiatx1-snr1.gtei.net...
> I'm trying to perform a simple DDL operation that my Solaris Oracle
> 7.3.4.0.1 server is refusing to run, citing a problem with its COMPATIBLE
> parameter. The thing is: its COMPATIBLE parameter is actually fine.
>
> The problem appears when I run this command:
> CREATE TABLE T2
>
> C1 NUMBER NOT NULL,
> C2 VARCHAR2(30) NULL,
> C3 DATE NULL,
> CHECK (C1 IS NOT NULL)
> )
> PCTFREE 10
> PCTUSED 40
> INITRANS 1
> MAXTRANS 255
> STORAGE (
> INITIAL 1024K
> NEXT 1024K
> MINEXTENTS 1
> MAXEXTENTS 2147483645
> PCTINCREASE 1)
> ;
>
> The response is:
> CHECK (C1 IS NOT NULL)
> *
> ERROR at line 5:
> ORA-00406: COMPATIBLE parameter needs to be 7.3.0.0.0 or greater
>
> The COMPATIBLE parameter *is* greater than 7.3.0.0.0. Here is the line
from
> the initORCL.ORA file:
> compatible = 7.3.4.0
>
> I would appreciate ANY ideas about what could be causing this problem.
>
>
>
>
>
Received on Tue Aug 10 1999 - 12:18:42 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US