Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Have you tried putting a space between people and the opening parenthesis, in case the lack thereof is confusing the parser? – Dan J Apr 17 '12 at 19:18
@DanJ yes I did both ways :( – fenerlitk Apr 17 '12 at 19:19

2 Answers

up vote 5 down vote accepted

VARCHAR2 is a type that needs a maximum size/length. Try something like...

varchar2(50)

Your missing left parenthesis is the parenthesis that surrounds the size.

CREATE TABLE people(
    id INT NOT NULL PRIMARY KEY,
    name VARCHAR2(50) 
);
share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.