Hello,
TestStand is logging to a Microsoft SQL Database with default Schema "Generic Recordset (NI)" and a step generates a "Report Text" which is written into SQL Table "STEP_RESULT" into column "REPORT_TEXT".
So far so good.
But REPORT_TEXT data is truncated at length 266 bytes.
I want this extend to 1024.
I modified the Database from "varchar(255)" to "varchar(MAX)" and
I modified the Recordset from "String (BSTR) 255" to "String (BSTR) 1024" or "String (VarChar) 2024".
but REPORT_TEXT data is still truncated.
Help is very welcome!