Hello,
I am having a table named temp having following schema.
roll Number(38), Description CLOB;
Now I am using following code to insert data in temp Table.
db_write_clob insert_row " insert into temp
values
(11,'$email_body')
"
Now here the email_body is having more than 5000 Characters.
Problem is when I am running this code nothing happens, when I viewed the log file I found that it simply becomes standstill. ( I waited for 10 minutes).
Can anyone correct me were I am going wrong.
Thanks in advance.
/Prashant