How to increase visual studio load test transaction name length? currently it's truncated if more than 64 characters.
Asked
Active
Viewed 81 times
1
-
I don't have a direct answer, other than to say changing the variable length in the "LoadTest2010" database doesn't seem to do it, I think this is a baked in assumption that no one would ever have a test name larger than 64 characters. Maybe a alternative approach is called for, I wonder if a different naming standard should be used all together for these types of tests. – David Rogers Dec 12 '18 at 13:36
1 Answers
1
I think you cannot increase the size. According to the description of the WebLoadTestTransaction table in the SQL database, the name field is of type nvarchar (64)
. Suggesting that the name size limit is a basic property of the database.

AdrianHHH
- 13,492
- 16
- 50
- 87
-
Do you know how data get inserted into this table? i mean do you know the stored procedure name? – Sakthivel May 26 '15 at 21:08