Hi
My company has an old oracle database table which use long datatype to store short news article. I need to insert a few short article into that table. However in sqlplus when I tried :
create table article ( id int, text long, ....);
insert into article (id, text, ...) values (407,
' Our company has launch new version of award winning CRM software crm-gold. ...................... please refer to our press release for detail')
SQLPLUS seems dosen't understand this is multiline message and complain it is not a valid value. What is the right way to insert multi line message into long? I can't change the datatype because that will break the application.
Thanks a lot for your help
Damon Pin
My company has an old oracle database table which use long datatype to store short news article. I need to insert a few short article into that table. However in sqlplus when I tried :
create table article ( id int, text long, ....);
insert into article (id, text, ...) values (407,
' Our company has launch new version of award winning CRM software crm-gold. ...................... please refer to our press release for detail')
SQLPLUS seems dosen't understand this is multiline message and complain it is not a valid value. What is the right way to insert multi line message into long? I can't change the datatype because that will break the application.
Thanks a lot for your help
Damon Pin