본문 바로가기

반응형

DB(SQL)

(83)
[MYSQL] USER(사용자) 생성/권한 1. MYSQL 접속 mysql -u root -p 2. 현재 사용자(user) 확인 -- Tool에서 사용할때도 동일 하다. -- mysql database에 정보가 담겨져 있으므로 mysql database 선택 use mysql; -- mysql database 선택 select host, user, password from user; -- 조회 3. 사용자 추가 및 비밀번호 설정 -- user 생성 create user [user_name]; create user new_user; -- user 생성 및 password 설정 1 create user [user_name]@[host] identified by '[password]'; create user new_user@localhost ident..
[DB] DataBase 운영 시 참고할만한 사이트 및 도서 도서 SQL Server 운영과 튜닝 사이트 dbrang.tistory.com/264 ADM 관련 자료 ◈ [2k8] 마이크로소프트 통합보안 -- Reference : microsoft -- Keyword : 보안 security -- File : ◈ [2k8] SQL Unplugged 세미나 -- Reference : microsoft -- Keyword : .. dbrang.tistory.com bluejini.co.kr/53 [MS-SQL] DBA의 역할과 책임 현재 G사 DBA 로써 근무 하고 있다. 예전에 보았던 DBA로써의 역활과 책임이라는 글을 다시 한번 읽어 보았다. DBA의 역할과 책임 DBA의 역할 시스템과 조직에 따라 DBA의 임무에 차이가 있을 수 있지 bluejini.co.kr s..
[DB Tool] Database Tool List Acronyms Tool Name Developer 참고 SSMS SQL Server Management Studio 마이크로소프트 Orange Orange Ware valley DB 언어마다 투링 HeidiSQL HeidiSQL 자유-오픈 소스 SW DBeaver DBeaver 오픈 소스 커뮤니티
[DB] Server SQL Modes The Most Important SQL Modes The most important sql_mode values are probably these: ANSI This mode changes syntax and behavior to conform more closely to standard SQL. It is one of the special combination modes listed at the end of this section. STRICT_TRANS_TABLES If a value could not be inserted as given into a transactional table, abort the statement. For a nontransactional table, abort the s..
[MySQL] utf8 vs utf8mb4 차이는? 결론 utf8mb4 추천 cirius.tistory.com/1769 [MySQL] utf8 vs utf8mb4 차이는? utf8 vs utf8mb4 차이는? MySQL, MariaDB, Postgresql, MSSQL, Oracle등등의 Database를 사용하면서 혹은 개발언어등에서 CHARSET = utf8로 세팅하고 사용한다. 언제부턴가 나는 MySQL, MariaDB를 사용할 경우 자.. cirius.tistory.com
DATABASE 네이밍 룰 참조 자료 jang8584.tistory.com/35 Database 네이밍 룰(Naming rule) 1. Database 관련 Naming Rule 가. Database Schema Name 1) 규칙 █ Database Profile 이름을 의미함 █ DB Alias 이.. jang8584.tistory.com
ERD 작성 무료 사이트 https://24hours-beginner.tistory.com/242 Free ERD create web site 개인적으로 무료인데 기능까지 사기인 AqueryTool을 사용하였다. (짱짱 좋다) 0. 가볍다! 간편하다! (내가 원하는 기능 왠만한거 다 있음) 1. 정렬기능 2. 이미지 내보내기, 엑셀로 내보내기, sql로 내 24hours-beginner.tistory.com 무료로 사용하기 좋은 ERD 웹 사이트 입니다. 한국사람이 만들어서 그런지 뭔가 사용하기 편합니다. 가끔 오류가 있긴 하지만 왠만하면 완벽한 SQL로도 내보내기가 가능하고 PDF로 만들거나 엑셀로 내보낼 수 있어 정말 편리합니다. aquerytool.com/ AQueryTool - AQuery.Web AQueryTool은 웹..
[MYSQL] DB DUMP (BACKUP 백업) Usage: mysqldump [OPTIONS] database [tables] OR mysqldump [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...] OR mysqldump [OPTIONS] --all-databases [OPTIONS] 0. MYSQL INSTALL (mysqldump를 사용하려면 mysql이 있어야함) 1. CMD OPEN 2. 저장할 위치로 이동 (이동하지 않으면 다 타이핑 쳐줘야함) 3. Usage를 참고로 명령어 입력 -- 현재 위치에 해당 스키마에 해당되는 모든 Table 백업파일명.sql로 dump mysqldump -u유저네임 -p 스키마명 > 백업파일명.sql Enter password : 패스워드 참고: https://www.le..

반응형