database - "missing authorization clause" while creating schema -


i trying create database schema in oracle using enterprise manager console as:

create schema scm authorization scm 

but giving error as: "missing authorization clause".

can please help.

create schema used create whole set of objects in single statement. not create "schema" way other dbms (e.g. postgresql) use term.

from the manual:

use create schema statement create multiple tables , views , perform multiple grants in own schema in single transaction

and big note @ beginning:

this statement not create schema. oracle database automatically creates schema when create user

(emphasis mine)

a schema , user (more or less) same thing in oracle. looking for:

create user scm identified scm; 

Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -