Re: Migration from DB2 to PostgreSQL

From: Amit Langote <amitlangote09(at)gmail(dot)com>
To: sachin kotwal <kotsachin(at)gmail(dot)com>
Cc: Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Migration from DB2 to PostgreSQL
Date: 2013-06-21 12:56:33
Message-ID: CA+HiwqGE57AngQPSZFJdLGiAQMEUXK-g4qhgVTPbe99WzXZwmQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Fri, Jun 21, 2013 at 9:40 PM, sachin kotwal <kotsachin(at)gmail(dot)com> wrote:
>>as i know each value is limited to 1GB. For larger content use module lo
>>http://www.postgresql.org/docs/9.2/static/lo.html
>
>
> I just want to know that like DB2 we can convert other data types into
> CLOB/BLOB using function CLOB()/BLOB().
>
> Example:
> SELECT CLOB('testdata') FROM SYSIBM.SYSDUMMY1
>
> Same way i want to convert other data types into large objects Oid in
> PostgreSQL.
>
> Proposed SQL will like:
>
> select col1::oid from hoge;
>
> ------OR------
>
> select to_oid('testdata');
>
> Can anyone tell me that how I can implement above function for conversion?
>

Sachin, check if this link is related:
http://stackoverflow.com/a/10139455/683402

+

Here (from official PG docs):
http://www.postgresql.org/docs/9.2/static/largeobjects.html

--
Amit Langote

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Melvin Call 2013-06-21 13:21:28 Re: Circular references
Previous Message sachin kotwal 2013-06-21 12:40:59 Re: Migration from DB2 to PostgreSQL