오라클 매뉴얼을 보세요. 여기의 자료실이나
아니면 technet.oracle.co.kr 에 가시면 PDF 형식의
오라클 전체 매뉴얼을 구할 수 있습니다.
그 중에서 Oracle SQL References 를 보시기 바랍니다.
create user user01 identified by pwd01
default tablespace users
temporary tablespace temp
quota unlimited on users
quota unlimited on 'ts_xxxx' ;
grant connect, resource to user01 ;
create user user02 identified by pwd02
default tablespace users
temporary tablespace temp
quota unlimited on users
quota unlimited on 'ts_xxxx' ;
grant connect, resource to user02 ;
|