#40 오라클 사용자 만들기
star
Tasks
sqlplus / as sysdba
alter session set "_ORACLE_SCRIPT"=true;
create user scott identified by tiger;
grant connect, resource to scott;
grant create view to scott;
grant create session to scott;
grant create synonym to scott;
grant create session, resource to scott;
alter user scott account unlock;
alter user scott default tablespace users quota unlimited on users;
Comment 0
-
Added
KKoZZi added
oraclelabel 01-06
Add a comment
Comment 0