Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

illegal use of LONG datatype ORA-06512

Status
Not open for further replies.

sahernandez

Programmer
Oct 1, 2002
69
SV

I got this error, when I try to

Insert into table1(long_field )
select longvalue_field from table2;

This insert is inside into package.
Somebody knows about this error..
thanks..
Alexander
 
You can use the SQL*Plus COPY command to get LONG data from one table to another. This will work remotely as well.

There is only one limitation - LONG data greater than 64k will be truncated after the 65535-th character. This is a SQLPlus limitation.


Hope that helps,

clio_usa - OCP DBA
------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top