1

How to increase visual studio load test transaction name length? currently it's truncated if more than 64 characters.

manlio
  • 18,345
  • 14
  • 76
  • 126
Sakthivel
  • 56
  • 5
  • 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 Answers1

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