Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
csv ファイルとして保存した jmeter テスト結果を mysql データベースにエクスポートする必要があります。 エクスポートしたい列はresponse time (t), timestamp (ts), average, throughput, latency, in and max.
response time (t), timestamp (ts), average, throughput, latency, in and max
誰でも助けてもらえますか?
使用できます
LOAD DATA INFILE 'fred.txt' INTO TABLE my_table;
また
LOAD DATA INFILE fred.csv INTO table my_table FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' ( response, timest, avg, thru, lat, in, max ) SET response= @var1, timest = @var2, etc