Collections:
Alter JMeter Test Result Table Structure
How to load Alter JMeter Test Result Table Structure? I found that my test result file does not match the table anymore.
✍: FYIcenter.com
You need to alter JMeter Test Result table
if you see issues when loading the test result file.
For example, the "trid" is too big to fit into the "int" data type in the database. You need to change the data type to "bigint":
alter table jmeter_test_result modify column trid bigint;
Or you want to add additional columns:
alter table jmeter_test_result add column ( component varchar(255), function varchar(255), tcname varchar(255) );
⇒ Convert JMeter Test Result to TestMan
⇐ Load JMeter Test Result Files to TestMan
2017-12-13, 1791🔥, 0💬
Popular Posts:
Where to find tutorials on Apache JMeter test tool? I want to know how to use Apache JMeter. Here is...
How to validate domain name format? In order to help your programming or testing tasks, FYIcenter.co...
How to Pass Windows Environment Variable to JMeter? I want to use Windows temporary folder environme...
How to generate MAC addresses? To help you to obtain some MAC addresses for testing purpose, FYIcent...
Where to find online test tools? FYIcenter.com has prepared a number of online test tools: Data Look...