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: How to concatenate long column?

Re: How to concatenate long column?

From: Naidenov <naidenov_at_animabank.spb.ru>
Date: Wed, 16 Dec 1998 15:54:18 +0300
Message-ID: <3677AD7A.37907763@animabank.spb.ru>


Hi,

If length of your LONG column less then 32762 bytes, you can do like this:

declare
sc varchar2(32000);
begin
select name_long_column into sc from ... ...
...
end;

Good luck!
Eugeny.
naidenov_at_animabank.spb.ru

mingye_at_my-dejanews.com wrote:

> Hi,
>
> There is a long column in my table and I need to concatenate this column with
> some other columns. But the database always complaint ORA-00932: inconsistent
> datatypes. I understand that you can apply any database functions against long
> column, but is there any workaround?
>
> Any input will be much appreciated,
> Mingye
>
> -----------== Posted via Deja News, The Discussion Network ==----------
> http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
Received on Wed Dec 16 1998 - 06:54:18 CST

Original text of this message

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