1. 테이블 생성
create schema TABLEA default character set utf8;
2. 사용자 추가 및 접근허용 설정
create user 'userAccount'@'%' identified by 'userPassword';
create user 'userAccount'@'localhost' identified by 'userPassword';
3. 추가한 사용자에게 테이블 접근권한 부여
grant all privileges on TABLEA.* to 'userAccount'@'localhost';
grant all privileges on TABLEA.* to 'userAccount'@'%';
4. 반영
flush privileges;
'마니의 공부방 > DataBase' 카테고리의 다른 글
[mysql] db 백업 (0) | 2020.12.27 |
---|---|
[oracle] sequence 생성/수정/삭제 (0) | 2020.12.24 |
[postgres] 백업 및 복구 (0) | 2020.12.23 |
oracle clobdata insert (0) | 2011.04.26 |
오라클 10g 설치하기(Windows 7) (0) | 2011.04.21 |