일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- javax.servlet.GenericFilter
- Remmina
- svn commit
- WH question
- Failed to download metadata for repo 'appstream'
- svn dump
- VirtualBox
- xrdp
- 포스트그레스 설치
- svn log
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- ant
- Oracle install
- apt-get update 오류
- svn load
- taskkill
- postgres install
- expected at least 1 bean which qualifies as autowire candidate
- mysql dml
- svn update
- docker oracle12c
- NEXUS
- Store password unencrypted
- svn 사용법
- docker 폐쇄망
- grep
- svn 변경된 파일 추출
- svn 특정 리비전 사이 추출
- svn
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- Today
- Total
목록DB (28)
기억의 습작
between select * from v_pawn where date_s between date('20220423') and date('20220424') select * from v_pawn where date(Date_s) >= date(subdate(now(), INTERVAL 1 DAY))
Hibernate.dialect documents Chapter 3. Configuration The easiest way to handle Sessions and transactions is Hibernate's automatic "current" Session management. For a discussion of contextual sessions see Section 2.3, “Contextual sessions”. Using the "jta" session context, if there is no Hibernate Sessio docs.jboss.org RDBMSDialect Dialect DB2 org.hibernate.dialect.DB2Dialect DB2 AS/400 org.hiber..
오라클 DB를 설치하다 보면 웹서버스로 8080포트를 사용하게 된다. 8080포트는 Tomcat기본포트로 겹치기 때문에 불편할 경우가 많다 오라클 포트 8080을 다른 포트로 변경하여 사용해 보자. TNSLSNR.exe 프로세서 이름으로 8080을 사용하고 있다면 다른 포트로 변경하기 확인방법 SQL> select dbms_xdb.gethttpport() from dual; 변경방법 SQL> exec dbms_xdb.sethttpport(9090);
Postgres DB를 우분투에 설치 및 기본적인 사용방법을 기술한다. 설치 # apt-get install postgresql postgresql-contrib -y 접속방법 # su - postgres postgres@4f744418d327:~$ psql psql (9.3.20) Type "help" for help. 계정 생성 $ create user {your-account}; 패스워드 변경 postgres=# alter user postgres with password '{your-password}'; 나머지 설정 참고는 centos 설치를 참조 https://ppusari.tistory.com/143