1
I am adding a small text in my database but the text is always cut, for example:
Company X operates in private security with the aim of preventing and reducing property losses in a given organization, and inhibiting any action against people’s lives. Our service is personalized and we respect the particularity of each client, setting up an operational plan according to procedures and after vulnerability analysis.
What is stored in the bank.
Hiperion acts in private security with the objective of preventing and reducing property losses in a given organization, in addition to inhibiting any action against people’s lives. Our service is personalized and responded~
someone knows what might be the cause of this?
Your column type is set wrong. For example, varchar(250), which is the number of characters you pasted as a result. Consider increasing the number of characters or changing the type to text() for example. Show us the SQL of the table that is experiencing problems.
– buback
Enter the code and see the size of the field as Buback said
– rray
I’m trying to use sql to change column type and it’s not working:
ALTER TABLE servicos ALTER COLUMN 'text' text;
– RFL
@Rafaelacioly, you can only do it if you have no records. Back up, delete the records and then run the type change.
– buback
Check this out: http://answall.com/q/78812/101
– Maniero