Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> HOW DO YOU DO FETCH A LONG COLUMN INTO VARCHAR2 FIELDS IN PLSQL

HOW DO YOU DO FETCH A LONG COLUMN INTO VARCHAR2 FIELDS IN PLSQL

From: Yass Khogaly <ykhogaly_at_us.oracle.com>
Date: Sun, 25 Jul 1999 11:05:48 -0700
Message-ID: <7nfg49$457$1@inet16.us.oracle.com>


DECLARE
    cursor1INTEGER; -- declare a cursor     ignore INTEGER; -- value is meaningless for a SELECT statement     statement VARCHAR2(100); -- holds the SQL statement to be executed     out_val VARCHAR2(100); -- value of the portion of the column returned

    out_length INTEGER; -- length of the portion of the column returned     num_bytes INTEGER := 10; -- length in bytes of the segment of the column

"The Views expressed here are my own and not necessarily those of Oracle Corporation"

Venkatesh Kumar <vkumar_at_fundu.com> wrote in message news:379A951D.ABDA4C11_at_fundu.com...
> Hi guys,
> We are trying to figure out a way to populate the Long columns in a
table
> using PL/Sql. We have a Web application with a Text area field. The data
in the
> Text area field is to be stored in a long column. However PL/Sl puts limit
on
> the size of a variable ( I think 2000K). I would like to know if there any
other
> solutions to this issue or if any any one has tried other methods using
Pl/Sql.

>

> Thanks
> Venkatesh

> Received on Sun Jul 25 1999 - 13:05:48 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US