#사용자 삭제하기
SQL>drop user slothink cascade;

#사용자 생성하기
SQL>create user slothink identified by 1234 default tablespace SLOTHINK_TB temporar
y tablespace temp quota 100m on users;

#사용자에게 권한 할당하기
SQl>grant connect,resource to slothink;

+ Recent posts