DATABASE/PostgreSQL
-
DBeaver로 ERD생성하기DATABASE/PostgreSQL 2024. 1. 21. 19:44
프로젝트를 진행하면서 항상 dbdiagram으로 ERD를 작성했는데, 조금 더 깔끔하게 보기 쉽게 정리하는 방법에 대해 고민해 보게 되었다. DBeaver를 활용해서 DB 다이어그램을 생성하는 것도 간편하고 정돈된 느낌이 들어 공부하며 직접 만들어 보았다. 1. DBeaver 접속 후 Diagrams 우클릭 -> 새 ER 다이어그램 클릭 2. Name에 생성할 Diagram 이름 입력 -> Initial content에서 해당 DB 클릭 -> 완료 클릭 3. 생성된 ERD 확인 후 보기 쉽게 정렬하기
-
DBeaver로 PostgreSQL 연결하기DATABASE/PostgreSQL 2024. 1. 20. 19:51
1. 설치 아래 주소로 접속하여 DBeaver를 설치해 준다. https://dbeaver.io/download/ Download | DBeaver Community Download DBeaver Community 23.3.4 Released on February 5th 2024 (Milestones). It is free and open source (license). Also you can get it from the GitHub mirror. DBeaver PRO 23.3 Released on December 11th, 2023 PRO version website: dbeaver.com Trial version dbeaver.io 2. PostgreSQL 연결하기 1) 우클릭 -> Create ->..
-
PostgreSQL 사용법DATABASE/PostgreSQL 2024. 1. 19. 18:29
SQL을 사용해 보며 Postgre를 사용할 일이 생겨 처음 연결부터 데이터 확인 하는 법까지 차례차례 기록해 보았다. 목차 1. PostgreSQL 설치 2. PostgreSQL 접속 3. 사용자 생성 4. 데이터베이스 생성 5. 데이터베이스 확인 1. PostgreSQL 설치 (Mac OS) 1) 터미널에서 설치 brew postgres 2) 홈페이지에서 설치 https://www.postgresql.org/download/ PostgreSQL: Downloads www.postgresql.org 2. PostgreSQL 접속 1) 서비스 시작 brew services start postgresql 2) 터미널에서 postgre접속하기 psql postgres 3) 사용자 확인 postgres=# \..