반응형
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://forums.devshed.com/postgresql-help-21/does-postgres-support-clob-535055.html
결론 : postgreSQL은 text와 CLOB라는 녀석(1G limited) 으로 대신 하고 있다는 것을 알 수 가 있다.
반응형
'DataBase > Postgresql' 카테고리의 다른 글
[Windows용] postgreSQL (0) | 2013.09.02 |
---|---|
windows postgreSQL autocommit off 만들기 (0) | 2013.05.25 |
postgreSQL 외부접근, DB 공유 (2) | 2013.03.22 |
Connection refused. Check that the hostname and port are correct and that the postmaster is accepting TCP/IP connections (0) | 2013.01.16 |
postgre SQL : 예외처리 (0) | 2012.11.21 |