DBX(開源數(shù)據(jù)庫管理工具) v0.5.15 中文綠色便攜版15.8MB / 05-21
輕量級SQLite數(shù)據(jù)庫查看與編輯器 SQLite Inspector Plus v1.0.7 1.8MB / 03-18
云倉管理Navicat for Snowflake 17 v17.3.10 官方正式版 x64118MB / 04-28
開源跨平臺 SQLite 管理工具 SQLiteStudio v3.4.8 中文多語安裝61.7MB / 12-04
DB Browser for SQLite(SQLITE數(shù)據(jù)庫編輯器) v3.13.0 綠色免費(fèi)中14.5MB / 10-09
數(shù)據(jù)庫管理Navicat Premium v17.1.3 綠色中文單文件免費(fèi)版157.6MB / 10-03
Navicat Premium 17 Lite(數(shù)據(jù)庫管理軟件) v17.2.7 中文綠色精簡113MB / 06-08
Navicat Data Modeler Lite 4(免費(fèi)數(shù)據(jù)庫設(shè)計(jì)工具) v4.0.6.0 官94.1MB / 07-08
Navicat Premium Lite 17(免費(fèi)數(shù)據(jù)庫管理軟件) v17.3.9 中文精簡116MB / 02-08
SAPIEN PrimalSQL 2024 v4.5.87 x64 安裝授權(quán)版(附安裝教程)59MB / 06-11
-
MariaDB(數(shù)據(jù)庫管理系統(tǒng)) v12.2.2 64位 官方綠色解壓版(附使用教 數(shù)據(jù)庫 / 93.8MB
-
MariaDB v12.2.2 (數(shù)據(jù)庫管理) 官方最新安裝版 64位 數(shù)據(jù)庫 / 83.3MB
-
MariaDB(數(shù)據(jù)庫管理系統(tǒng)) v10.11.17 32/64位 官方綠色解壓版(附 數(shù)據(jù)庫 / 149MB
-
開源數(shù)據(jù)庫管理工具 DBeaver Lite Edition v26.1.0 中文免費(fèi)綠色 數(shù)據(jù)庫 / 351MB
-
開源數(shù)據(jù)庫管理工具 DBeaver Lite Edition v26.1.0 中文官方安裝 數(shù)據(jù)庫 / 332MB
-
DBX(開源數(shù)據(jù)庫管理工具) v0.5.15 中文綠色便攜版 數(shù)據(jù)庫 / 15.8MB
-
DBeaver Community(開源數(shù)據(jù)庫管理工具) v26.0.5 x86/64位 官方 數(shù)據(jù)庫 / 111MB
-
DBeaver Community社區(qū)版(可視化數(shù)據(jù)庫管理工具) v26.0.5 x86/64 數(shù)據(jù)庫 / 123MB
-
MySQL Workbench 8.0 穩(wěn)定版 v8.0.46 漢化安裝版(附漢化教程) 64 數(shù)據(jù)庫 / 244MB
-
DBBlobEditor(數(shù)據(jù)庫編輯器) v8.4.1 官方免費(fèi)安裝版(附安裝教程) 數(shù)據(jù)庫 / 12.8 MB
詳情介紹
下載DBT2 Benchmark,編譯安裝,按照README-MYSQL中的步驟來操作。報(bào)告的時(shí)間是客戶端的經(jīng)過時(shí)間,不是在服務(wù)器端的CPU時(shí)間。執(zhí)行BENCHMARK()若干次可能是明智的,并且注意服務(wù)器機(jī)器的負(fù)載有多重來解釋結(jié)果。需要由aclocal、autoheader、autoconf、automake,以及mysql、mysql-libs、mysql-devel。
$ ./congigure --with-mysql
$ make
$ sudo make install
安裝好datagen,然后生成數(shù)據(jù),需要先創(chuàng)建對應(yīng)的目錄如/tmp/dbt2-w3。
$ datagen -w 3 -d /tmp/dbt2-w3 --mysql
warehouses = 3
first warehouse = 1
districts = 10
customers = 3000
items = 100000
orders = 3000
stock = 100000
new_orders = 900
生成完數(shù)據(jù)后就可以執(zhí)行scripts/mysql/mysql_load_db.sh腳本將數(shù)據(jù)導(dǎo)入到數(shù)據(jù)庫中。
benchmark 使用方法:
這里還有一種方法能夠獲取到 mysql 執(zhí)行一個sql 語句或sql 表達(dá)式的 時(shí)間,并且可以由用戶指定執(zhí)行次數(shù)。通過執(zhí)行大規(guī)模次數(shù), 才能夠獲得比較穩(wěn)定的 sql 執(zhí)行時(shí)間。
select benchmark(num, exp) ; 其中 num 為執(zhí)行次數(shù),exp 為希望獲得執(zhí)行時(shí)間的表達(dá)式 ,不包括 sql 語句
select benchmark(1, to_days(2011-04-07) - to_days(now()) <1 ); 執(zhí)行時(shí)間大概是 0.0011秒 ,可以計(jì)算表達(dá)式時(shí)間
select benchmark(1, select * from MYTABLE limit 0,40 ); Mysql 報(bào)錯,說明EXP 不能為sql 語句,只能為表達(dá)式或函數(shù)
下面是對num 賦予不同的數(shù)值,查看執(zhí)行不同次數(shù)所耗費(fèi)的時(shí)間
select benchmark(100, to_days(2011-04-07) - to_days(now()) <1 ); 執(zhí)行時(shí)間大概也是 0.0012秒
select benchmark(10000, to_days(2011-04-07) - to_days(now()) <1 ); 執(zhí)行時(shí)間大概也是 0.0056秒
select benchmark(1000000, to_days(2011-04-07) - to_days(now()) <1 ); 執(zhí)行時(shí)間大概也是 0.4454秒
為什么執(zhí)行100次和執(zhí)行 1次的時(shí)間耗費(fèi)差不多呢? 這是因?yàn)榭赡鼙蛔⑷肓司彺娴木壒剩虼薭enchmark 不能用來完成一種實(shí)際的 基準(zhǔn)測試。
英文介紹:
The DBT2 Benchmark Tool can be used to run automated benchmarks for MySQL and MySQL Cluster. It supports three types of benchmarks:
DBT2
SysBench
flexAsynch
It has been primarily used on Linux x86_64 platforms, but occasional benchmarks have also been run on Solaris and Windows. It can be used to test MySQL based on MySQL 5.6 and MySQL 5.7 Releases (older versions might work as well but isn't maintained any more).
DBT2 is an open source benchmark that mimics an OLTP application for a company owning large amounts of warehouses. It contains transactions to handle New Orders, Order Entry, Order Status, Payment and Stock handling. The transactions are a mix of read and write transactions. Using MySQL the benchmark tests a single MySQL Server instance. Using MySQL Cluster the benchmark tool can drive large distributed tests with many MySQL Cluster Data nodes and MySQL Server instances. The DBT2 Benchmark Tool provides scripts to automate execution of these benchmarks.
The DBT2 tarball also contains a benchmark tool using PowerShell on Windows to run sysbench on Windows. There is also scripts mimicing top on Windows. Finally there is also a set of simple scripts to use the perf tool on Linux.
FlexAsynch is a benchmark specifically developed to test scalability of MySQL Cluster. It is found in any MySQL Cluster source tarball under storage/ndb/test/ndbapi. The features required to run it in this parallel manner requires a MySQL Cluster 7.x version released after the 15th of October 2011. The DBT2 Benchmark Tool can be used to run distributed tests with many MySQL Cluster Data nodes and many flexAsynch benchmark programs in a completely automated fashion. The latest version of flexAsynch mainly exists in the source tree for the 2 most recent versions.
MySQL Server Version: 5.6 and later
MySQL Cluster Version: MySQL Cluster 7.3 and later
下載地址
人氣軟件

navicat11注冊機(jī)(Navicat11全系列注冊機(jī)) 中文綠色版
MSSQL2008 正式版 sql server 2008 r2 64位&32位
Navicat 16 Keygen注冊機(jī)(NavicatCracker) v16.0 中文最新破解版
Navicat Keygen Patch(Navicat全系列注冊機(jī)) v5.6.0 漢化版
Sybase powerbuilder 12.5 官方正式特別版(PowerBuilder 12.1完
instantclient-basic(輕量級數(shù)據(jù)庫) v12.2.0.1.0 Win64 官方免費(fèi)
Navicat for Oracle 12.0 官方中文特別版(附破解補(bǔ)丁+注冊機(jī)) 64
Navicat for Oracle (Oracle數(shù)據(jù)庫圖形管理工具) v11.2.13 簡體
Navicat For MySQL圖形化管理工具 12.0 簡體中文免費(fèi)版 (方便的
Sybase PowerDesigner v12.5 特別特別版
相關(guān)文章
-
DBX(開源數(shù)據(jù)庫管理工具) v0.5.15 中文綠色便攜版DBX 是一款數(shù)據(jù)庫管理工具,并且支持多種數(shù)據(jù)庫格式,例如:MySQL、PostgreSQL、SQLite、Redis、MongoDB、DuckDB、ClickHouse、SQL Server、Oracle、Elasticsearch 等 10+ ...
-
輕量級SQLite數(shù)據(jù)庫查看與編輯器 SQLite Inspector Plus v1.0.7 綠色漢化單文件版SQLite Inspector Plus 是一款適用于 Windows 的便攜式 SQLite 數(shù)據(jù)庫查看器、編輯器和查詢工具,歡迎需要的朋友下載使用...
-
云倉管理Navicat for Snowflake 17 v17.3.10 官方正式版 x64Navicat for Snowflake 旨在簡化你與 Snowflake 的交互,使你能夠輕松處理海量數(shù)據(jù),它提供多種功能,包括數(shù)據(jù)建模、商業(yè)智能(BI)、人工智能(AI)集成以及多種數(shù)據(jù)遷移...
-
開源跨平臺 SQLite 管理工具 SQLiteStudio v3.4.8 中文多語安裝免費(fèi)版 32/64位SQLiteStudio是一款免費(fèi)、開源且跨平臺的SQLite數(shù)據(jù)庫管理工具,它的鏈接是。本文將深入解析其功能、技術(shù)實(shí)現(xiàn)和應(yīng)用場景,以期吸引更多用戶了解并使用它...
-
DB Browser for SQLite(SQLITE數(shù)據(jù)庫編輯器) v3.13.0 綠色免費(fèi)中文版DB Browser For SQLite(DB4S)是一個高品質(zhì)、交互、開源系統(tǒng)的專用工具,用以創(chuàng)建、設(shè)計(jì)和編輯與SQLite兼容的數(shù)據(jù)庫文件。歡迎需要的朋友下載使用...
-
數(shù)據(jù)庫管理Navicat Premium v17.1.3 綠色中文單文件免費(fèi)版Navicat Premium17是一個數(shù)據(jù)庫管理工具,結(jié)合了其他Navicat成員的功能,可輕松連接到MySQL、SQLite、Oracle、MariaDB、Mssql、及PostgreSQL數(shù)據(jù)庫,這里提供最新中文單文...
下載聲明
☉ 解壓密碼:m.fzitv.net 就是本站主域名,希望大家看清楚,[ 分享碼的獲取方法 ]可以參考這篇文章
☉ 推薦使用 [ 迅雷 ] 下載,使用 [ WinRAR v5 ] 以上版本解壓本站軟件。
☉ 如果這個軟件總是不能下載的請?jiān)谠u論中留言,我們會盡快修復(fù),謝謝!
☉ 下載本站資源,如果服務(wù)器暫不能下載請過一段時(shí)間重試!或者多試試幾個下載地址
☉ 如果遇到什么問題,請?jiān)u論留言,我們定會解決問題,謝謝大家支持!
☉ 本站提供的一些商業(yè)軟件是供學(xué)習(xí)研究之用,如用于商業(yè)用途,請購買正版。
☉ 本站提供的DBT2 Benchmark Tool (mysql壓力測試工具) V0.37.50.14資源來源互聯(lián)網(wǎng),版權(quán)歸該下載資源的合法擁有者所有。


