728x90
반응형
사용자 입력
> use mysql;
> insert into user(host,user,password,ssl_cipher,x509_issuer,x509_subject)
values('%','test',password('world!@#'),'','','');
values('%','test',password('world!@#'),'','','');
> flush privileges;
권한 설정
> grant all privileges on test.* to 'test'@'%' identified by 'world!@#';
or
> grant select, insert, update, delete on test.* to 'test'@'%' identified by 'world!@#';
> flush privileges;
권한 확인
> show grants for test@'%';
권한 삭제
> REVOKE ALL PRIVILEGES ON test.* FROM test@'%';
사용자 삭제 - 권한(GRANTS)까지 모두 삭제
> drop user test@'%'
728x90
728x90
BIG
'Programming > SQL' 카테고리의 다른 글
mysql 입력시 중복 데이터 (0) | 2014.07.17 |
---|---|
Communications link failure due to underlying exception (0) | 2013.07.05 |
[오라클] 트리거 TRIGGER (1) | 2012.02.03 |
Toad에서 DB Export 하기 (0) | 2011.12.23 |
TOAD script 추출하기(Database Script, Schema Script) (0) | 2011.12.08 |
댓글