postgreSQL clob 처리

2013. 5. 13. 16:06DataBase/Postgresql

반응형

 

 

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) 으로 대신 하고 있다는 것을 알 수 가 있다. 

 

 


반응형