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
Post a Comment