Frage

CREATE TYPE customer_typ_demo AS OBJECT
( customer_id        NUMBER(6)
, cust_first_name    VARCHAR2(20)
) ;
.
.
.
.

Above is the code I used from oracles website, when I hit enter it just gives me another numbered line to type in no matter what I try to type it doesn't break out. Any suggestions?

War es hilfreich?

Lösung

Assuming you are using SQL*Plus, you would need to put the character / on a blank line in order to instruct it to run the code you've typed in. Otherwise, SQL*Plus doesn't know when your statement is complete.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top