“ORA-01461: can bind a LONG value only for insert into a LONG column” error in NHibernate
“ORA-01461: can bind a LONG value only for insert into a LONG column” happen when try to insert large text (> 4000 Unicode characters) using NHibernate and Oracle. Following are steps work around to fix the problem: 1. Using Clob or NClob data type Normally we use VARCHAR2 or NVARCHAR2…