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 -> Trouble inserting record into ORACLE TABLE having column with default values

Trouble inserting record into ORACLE TABLE having column with default values

From: <Richard_Popovich_at_Whittman-Hart.com>
Date: 1998/01/12
Message-ID: <884662894.852754446@dejanews.com>#1/1

Trying to build an Oracle7.3.2.2 DB with tables that have table column's with DEFAULT VALUES.

I have a table similar to the following example:

CREATE TABLE foo( id NUMBER(4),

                     description VARCHAR2(20) DEFAULT 'Unassigned');

When I insert the following records:

[1]

  INSERT INTO foo VALUES(001, NULL);
1 ROW CREATED.
[2]

  INSERT INTO foo VALUES(002, ' ');
1 ROW CREATED.
[3]

  INSERT INTO foo VALUES(003, );
ERROR at line 1:
ORA-00936: missing expression

SQL> SELECT * FROM foo;

       ID NAME

--------- --------------------
        1
        2

I am not able to get the DEFAULT VALUE for FOO.NAME.

Appreciate any/all input,

Rich

-------------------==== Posted via Deja News ====-----------------------
      http://www.dejanews.com/     Search, Read, Post to Usenet
Received on Mon Jan 12 1998 - 00:00:00 CST

Original text of this message

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