스터디 용도 등으로 로컬 환경에서 PostgreSQL을 띄우는 것은 생각보다 간단하다. 우선 로컬에서 PostgreSQL 이미지와 매핑할 적당한 디렉토리를 준비한 후, 다음과 같이 입력한다. [~] docker pull postgres:14.6 # 생각해보니까 요 줄은 생략해도 아래 명령어에서 알아서 될 것 같다. [~] docker run -p 35432:5432 --name my-first-pg-docker \ -e POSTGRES_PASSWORD=my-insecure-secret -e TZ=Asia/Seoul \ -v [여기에 내 로컬 환경의 적당한 경로를 입력]/pgdata:/var/lib/postgresql/data \ -d --restart always postgres:14.6 -p 옵션은 [..
Add minutes to CURRENT_TIMESTAMP in PostgreSQL I have a procedure in PostgreSQL that I want to add the number of minutes to CURRENT_TIMESTAMP like below timestamp_var := CURRENT_TIMESTAMP + interval '20 minutes'; But the number of minutes is a stackoverflow.com select current_time + (extract(minute from time '07:45:00') * interval '1 minute') '07:45:00' 부분에 컬럼명을 넣어도 좋지만, 타입 캐스팅에 주의해야 한다. 예시: ext..
참고링크 How can I add a column that doesn't allow nulls in a Postgresql database? I'm adding a new, "NOT NULL" column to my Postgresql database using the following query (sanitized for the Internet): ALTER TABLE mytable ADD COLUMN mycolumn character varying(50) NOT NULL; Each ... stackoverflow.com 상세 이미 존재하는 테이블에 not null 컬럼을 신규 추가하려는 경우, 다음과 같은 에러 메시지가 반환된다. ERROR: column [컬럼명] contains null value..
설치 과정에서 다음과 같은 에러가 발생할 수 있다. 44,210 bytes in 0.19 seconds (230.88KB/sec) ; Fetching # ; 15.04KB ================================================== 15,398 bytes in 0.00 seconds (0.00KB/sec) ; Loading "mssql" [package garbage-pools]........................... [package mssql]. debugger invoked on a LOAD-FOREIGN-LIBRARY-ERROR in thread #: Unable to load foreign library (SYBDB). Error opening shared ..
- Total
- Today
- Yesterday
- Git
- kotlin
- shell
- JPA
- terraform
- hashicorp
- Spring Cloud Config
- AWS IoT
- eureka
- Gradle
- Vault
- Puppeteer
- IntelliJ
- jQuery
- Node.js
- postgresql
- mysql
- AWS
- pgloader
- Database
- 코딩테스트
- JEST
- Docker
- Linux
- spring boot
- javascript
- RancherDesktop
- Java
- react
- etc
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |