Page 1 of 1

Data Insert Failed - SQL Server

Posted: Fri Sep 17, 2021 5:04 am
by ptmi1047
Hi,

I have an issue to insert data (SQL Server) with more than 200 characters using trigger from PM, it's failed to insert to db, there is no data. I'm using PM 3.2.1-community.

Any suggestions to solve this issue?

Thanks.

Re: Data Insert Failed - SQL Server

Posted: Sat Apr 02, 2022 3:10 am
by marceloayllon
Hello ptmi1047,

You could verify that in the database, the field where you want to insert the content has more than 200 characters.
You can try: ALTER TABLE t1 ALTER COLUMN c VARCHAR (300); OR TEXT depending on your needs