Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: How can I create an oracle schema?
"Guillermo Uriarte" <guiuriarte_at_yahoo.es> schreef
> How can I create an oracle schema?
create a user, and ...
You might give the new user someting to create in his/her schema:
Grant create session to &&USERNAME ;
Grant create table to &&USERNAME ;
Grant create view to &&USERNAME ;
Grant create trigger to &&USERNAME ;
Grant create procedure to &&USERNAME ;
Grant create sequence to &&USERNAME ;
grant create synonym to &&USERNAME ;
cheers,
Roelof