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 -> Re: select and insert long column in a stored procedure

Re: select and insert long column in a stored procedure

From: <tjmxyz_at_my-deja.com>
Date: 2000/08/11
Message-ID: <8n0bvv$4kg$1@nnrp1.deja.com>#1/1

Try to bind it to a long variable example something like.

Please exuse incorrect SQL I think you get the idea.

DECLARE
L_longCol Long;
BEGIN select x from source into L_longCol;
insert (y) into dest values(:L_longCol);

END; HTH Sent via Deja.com http://www.deja.com/
Before you buy. Received on Fri Aug 11 2000 - 00:00:00 CDT

Original text of this message

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