essiprojects
Programmer
Hi,
I have a table like this:
create table A
(
id int,
name char(4000)
);
I have a procedure where I assign values to field name, but when the assigned value is greater than 255 characters, the name is truncated.
Does anybody know What I have to do for maintaining all the characters?
Does anybody know any other data type that permits that?
Thank you.
I have a table like this:
create table A
(
id int,
name char(4000)
);
I have a procedure where I assign values to field name, but when the assigned value is greater than 255 characters, the name is truncated.
Does anybody know What I have to do for maintaining all the characters?
Does anybody know any other data type that permits that?
Thank you.