i want to create an insert script which will be used only to insert one record into one table.
It has 5 columns and one of them is of type CLOB.
when ever i am trying it says can not insert string is so long . larger than 4000.
i need an insert statement with clob as one field.
insert into tblTableName (id, name, description, accountNumber, fathername)
values(1,N'Name', CLOB'some very long string here, greater than 4000 characters', 23, 'John')
Please advice.
Thanks in advance Ashish