U
ucasesoftware
In my stored procedure :
@resume text =null,
in my Code :
..Add("@resume", SqlDbType.Text, 2147483647).Value = myReader("resume")
but when i try to UPDATE, i have this error message :
Only text pointers are allowed in work tables, never text, ntext, or
image columns. The query processor produced a query plan that required
a text, ntext, or image column in a work table.
But i have no problem with INSERT
any idea ?
@resume text =null,
in my Code :
..Add("@resume", SqlDbType.Text, 2147483647).Value = myReader("resume")
but when i try to UPDATE, i have this error message :
Only text pointers are allowed in work tables, never text, ntext, or
image columns. The query processor produced a query plan that required
a text, ntext, or image column in a work table.
But i have no problem with INSERT
any idea ?