create user test identified by test_1234;
select username from dba_users;
권한을 주기 시작한다.
17:36:34 SQL> grant create session to test ;
grant select any table to test;
grant update any table to test;
grant delete any table to test ;
grant insert any table to test;
반응형
'데이터베이스 > 데이터베이스' 카테고리의 다른 글
[mysql] INSERT ... ON DUPLICATE KEY UPDATE Statement : UNIQUE index 혹은 PRIMARY KEY 기준으로 중복값 체크 (0) | 2024.12.02 |
---|---|
[mysql] replica 서버 구축하는 목적, 복제방법 w.바이너리 로그 (1) | 2023.07.29 |
트랜잭션의 격리수준 [Real_MySQL_8.0] (0) | 2023.05.28 |
database. 클러스티드 인덱스/논 클러스티드 인덱스 (0) | 2022.05.09 |
mysql. timestampdiff (0) | 2022.04.21 |