본문 바로가기
반응형

DataBase/Postgresql8

docker 기반 postgreSQL 접속하기 목표 : docker 컨테이너가 띄워져있다는 전제하에 postgresql에 접속을 해서 테이블을 조회 해보자 docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 13e2af478713 postgres "docker-entrypoint.s…" 11 days ago Up 11 days 0.0.0.0:5432->5432/tcp, :::5432->5432/tcp rest 접속 docker exec -i -t rest bash 데이터베이스 보기 /l postgres-# \l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+--------.. 2022. 4. 4.
[Windows용] postgreSQL 아래의 링크는 postgreSQL + pgAdmin 이 함께 깔리는 일석이조의 set up 파일이다. http://www.enterprisedb.com/products-services-training/pgdownload 환경 OS : window 7 64bit 원하는 버전에 맞게..설치를 하면 된다. 다른쪽에서 구한 것을 깔아서 해보았다니...설치는 되어지나 커넥션부분에서 접속이 되지 않았다.. md5를 trust로 바꾸어주는 등 여러가지 방법을 해보았으나..fail~!! 위의 링크에서 다운받아서 하니 잘 된다. ^-^good~ - 끝 - 2013. 9. 2.
windows postgreSQL autocommit off 만들기 windows postgreSQL autocommit off ..... JTA가 잘되지 않아서..어제 하루 동안 찾아서 해봤는데..못찾았는데..ㅠ.ㅠ.. 오늘 스터디 와서 함께 해보니..해결 되었다 ㅎㅎㅎ 감사!! PostgreSQL AUTOCOMMIT : postgreSQL은 default가 ON 이다.-_-;; MS-SQL도 그러하다. Oracle은 OFF가 default~~! 설정 방법은 아래와 같다. 2PC 관련 설명^-^(성능 이슈..느림, 외부와 연결이 힘듬..계정/암호 알려 줄 것인가?..ㅋㅋ;;) 통합 이슈 : 2pc DATASOURCE를 넘어..서로 다른 조직에서 서로다른 애플리케이션, 환경에서의 통합은 어떻게 해야하나??? 옛날에 COBBA라는 녀석이 나옴. 자바진영은 새로운것을 만듬... 2013. 5. 25.
postgreSQL clob 처리 postgreSQL을 사용하면서 oracle에서 사용되어지는 CLOB, BLOB을 대신하여 어떤 것을 사용해야하는지.. 알아보자^-^ 아래의 링크(매뉴얼)을 통해 알 수가 있다. http://www.postgresql.org/docs/current/static/datatype-character.html "In addition, PostgreSQL provides the text type, which stores strings of any length" Be aware that CLOBs in Postgres are limited to 1GB, whereas Oracle can handle 4GB (which is also well documented in the manual) - 참고 사이트 : http.. 2013. 5. 13.
postgreSQL 외부접근, DB 공유 위의 그림은 내용과 전혀 무관한 그림입니다 =ㅁ=ㅋㅋㅋ; 이번에 실습교육을 진행하면서..DB를 셋팅하면서 pc마다 다른 환경에...이상한 오류도 많고..안깔리는 경우도 많고...ㅋㅋㅋㅋ 최악이였다 = =;; 그래서..postgreSQL을 설치한 PC에 모두 붙는 형태로..가야겠다는 생각이 들었다^-^good~ 그럼 어떻게??? DB를 공유 시킬 수 있을까?? (spring + postgreSQL 환경) spring 설정은 제외 한 설명을 하겠다. 1. pg_hba.conf 파일. Postgresql 은 Host Based Authorization 기반으로 외부 접속을 제어 한다. 이는 pg_hba.conf 파일을 다음과 같이 편집함으로써 가능하다. host all all 192.134.2.11/32 tr.. 2013. 3. 22.
Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections [위의 그림은 본 내용과 무관 합니다..ㅋㅋ YG 걸그룹의 새얼굴 김지수!] 혹은 JNDI lookup for name [database.driver.ClassName] threw NamingException with message: database.driver.ClassName not bound. Returning null. 이런 에러가 났다면... 환경은 Spring3.1 & Jboss & Postgre9.x C:\Acet\Middleware\jboss-eap-5.1\jboss-as\server\default\deploy 의 postgres-ds.xml 을 열어서... 부분을 수정 하면 된다. 다른 서버이름 데이터베이스이름 등등이 틀렸었다..ㅋㅋ PostgresDS true org.postgresql.. 2013. 1. 16.
postgre SQL : 예외처리 예외처리? 오류처리? 음..anyways...찾아보니 RAISE 라는 것과 Exception이라는 것이 있는 것 같다. 우선 EXCEPTION 을 학습하고 적용시켜 보자^-^ http://www.postgresql.org/docs/8.0/static/plpgsql-control-structures.html By default, any error occurring in a PL/pgSQL function aborts execution of the function, and indeed of the surrounding transaction as well. You can trap errors and recover from them by using a BEGIN block with an EXCEPTION cla.. 2012. 11. 21.
postgresql 학습하기 pgAdmin...오픈소스 데이타베이스라고 한다. 와우! 학습해보자~~+ㅁ+/ http://www.postgresql.org/docs/8.1/static/plpgsql-development-tips.html 프로시저 or 함수를 사용해보자^-^ PL/pgSQL - SQL Procedural Language 36.11. Porting from Oracle PL/SQL http://www.postgresql.org/docs/8.1/static/plpgsql-porting.html#PLPGSQL-PORTING-EX2 This section explains differences between PostgreSQL's PL/pgSQL language and Oracle's PL/SQL language, to hel.. 2012. 11. 21.
반응형