sql - ORACLE: ORA-02013: missing CONNECT keyword -
when executing script using sql developer 4.0 against oracle 11.2 express database
alter user tms quota 100m on tdm grant unlimited tablespace tms i following error:
ora-02013: missing connect keyword 02013. 00000 - "missing connect keyword" *cause: *action: upfront did connect localhost / xe.
i tried
connect sys sysdba and entered password.
create table statements fail same result.
the problem trying execute 2 commands one. put semicolon @ end of each of them , work:
alter user tms quota 100m on tdm; grant unlimited tablespace tms; check possibilites of alter user command here: alter user - oracle documentation
Comments
Post a Comment