SQLPLUS says I have missing left parenthesis with this statement in my sql script..
CREATE TABLE people(
id INT NOT NULL PRIMARY KEY,
name VARCHAR2
);
I had uploaded my script with sftp, could that have played around with the script?
|
VARCHAR2 is a type that needs a maximum size/length. Try something like...
Your missing left parenthesis is the parenthesis that surrounds the size.
|
|||
|
|
|
You need to specify a size for the VARCHAR2 data type. E.g. VARCHAR2(30) SQL*Plus is looking for the brackets around the VARCHAR2 size definition. |
|||
|
|
peopleand the opening parenthesis, in case the lack thereof is confusing the parser? – Dan J Apr 17 '12 at 19:18