일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Linux
- STS
- @test
- 컨테이너
- 리눅스
- java spring
- SpringJDBC
- 마이바티스
- 프로퍼티
- Ubunt
- POJO
- Dependency Injection
- Di
- myBatis
- spring
- pointcut
- XML
- JdbcTemplate
- AOP
- Framework
- JDBC TEMPLATE
- @AspectJ
- java
- spring framework
- Spring JDBC
- Spring Boot
- unix
- @JUnit
- @Spring-Test
- spring aop
- Today
- Total
목록PostgreSQL/시작하기 (소개 및 설치) (5)
개키우는개발자 : )
1. 데이터베이스 Tool 설치하기 https://dbeaver.io/download/ Download | DBeaver Community Download Tested and verified for MS Windows 7/8/10, Linux and Mac OS X. DBeaver requires Java 1.8 or higher. Windows and MacOS installers include OpenJDK 11 bundle. If you are on Mac OS X and you do NOT use PKG installer then you will need to setup Java. N dbeaver.io 1. 사이트를 방문하여 OS에 맞게 다운로드 받습니다. 2. 언어를 선택합니다. 3. 일반적인..
1. 파일 다운로드 2. pgAdmin4 실행 3. 데이터베이스 생성하기 4. dvdrental 데이터베이스 이름을 입력합니다. 5. 생성된 데이터베이스 우클릭 -> Restore 6. ... 버튼을 눌러 파일을 선택합니다. 7. Format -> All Files -> C:TEMP 경로안에 dvdtental.tar 선택 8. Restore 클릭 9. 테이블을 열어보면 각테이블들이 나열되어 보여집니다. 샘플 DB를 활용하여 실습을 하기때문에 저장하시면 좋을것 같아요~
1. pgAdmin4 실행 2. 비밀번호를 입력후 접속 만약 접속이 안되면 server 클릭 -> PostgreSQL 12 우클릭 -> Connect Server 누른후 설치할 때 설정한 비밀번호 입력 3 . 접속을 하시면 Sever Dashboard와 PostgreSQL 구조가 보입니다. 크게 databases , Roles , Tablespaces 3개의 구조로 되어있으며 Data는 Table에 담기며 Table은 Tablespaces 에 저장됩니다. 접속하면 기본 테이블로는 postgres 테이블이 생성되어 있습니다. 4. postgres 테이블 우클릭 -> Query Tool을 입력하면 Query문을 입력할 수 있는 입력 창이 나옵니다. 5. 잘 작성되는지 테스트 해보기. 현재 시간을 보여주는 S..
PostgreSQL은 오픈 소스 데이터 베이스 입니다. 랭킹보기 : https://db-engines.com/en/ranking 2019년도 랭킹을 보면 매우 높은 점유율을 가지고 있는 RDBM중 하나입니다. 개요 - PostgreSQL은 관계형 데이터베이스 시스템의 일종입니다. - 가장 진보한 오픈소스 데이터베이스 시스템이라고 할 수 있으며 - Unix/Linux, MAC OS, Soraris, Windows 등의 OS를 지원합니다. - PostgreSQL 은 완전 무료 소프트웨어입니다. 특징 - multi-version concurrency control (MVCC) 의 완벽한 지원 - C/C++,Java등의 프로그래밍 언어 연동을 완벽 지원 - 확장성에 매우 좋음(Data Types,Index Ty..
PostgreSQL 설치 하기 링크 : https://www.postgresql.org/download/windows/ PostgreSQL: Windows installers Windows installers Interactive installer by EnterpriseDB Download the installer certified by EnterpriseDB for all supported PostgreSQL versions. This installer includes the PostgreSQL server, pgAdmin; a graphical tool for managing and developing your datab www.postgresql.org 1. 페이지 접속 후 Download the..