Largest mysql database in the world

If you want to query in the INFORMATION_SCHEMA database I have the following:

Total Storage By Database in MB

SELECT DBName,CONCAT(LPAD(FORMAT(SDSize/POWER(1024,pw),3),17,' '),' ',
SUBSTR(' KMGTP',pw+1,1),'B') "DataSize",
CONCAT(LPAD(FORMAT(SXSize/POWER(1024,pw),3),17,' '),' ',
SUBSTR(' KMGTP',pw+1,1),'B') "IndexSize",
CONCAT(LPAD(FORMAT(STSize/POWER(1024,pw),3),17,' '),' ',
SUBSTR(' KMGTP',pw+1,1),'B') "Total Size"
FROM (SELECT IFNULL(DB,'All Databases') DBName,SUM(DSize) SDSize,
SUM(XSize) SXSize,SUM(TSize) STSize
FROM (SELECT table_schema DB,data_length DSize,index_length XSize, 
data_length+index_length TSize FROM information_schema.tables WHERE
table_schema NOT IN ('mysql','information_schema','performance_schema')) AAA
GROUP BY DB WITH ROLLUP) AA,(SELECT 2 pw) BB ORDER BY (SDSize+SXSize);

Total Storage By Storage Engine

SELECT IFNULL(B.engine,'Total') "Storage Engine",
CONCAT(LPAD(REPLACE(FORMAT(B.DSize/POWER(1024,pw),3),',',''),17,' '),' ',
SUBSTR(' KMGTP',pw+1,1),'B') "Data Size",
CONCAT(LPAD(REPLACE(FORMAT(B.ISize/POWER(1024,pw),3),',',''),17,' '),' ',
SUBSTR(' KMGTP',pw+1,1),'B') "Index Size",
CONCAT(LPAD(REPLACE(FORMAT(B.TSize/POWER(1024,pw),3),',',''),17,' '),' ',
SUBSTR(' KMGTP',pw+1,1),'B') "Table Size" FROM
(SELECT engine,SUM(data_length) DSize,SUM(index_length) ISize,
SUM(data_length+index_length) TSize FROM information_schema.tables
WHERE table_schema NOT IN ('mysql','information_schema','performance_schema')
AND engine IS NOT NULL GROUP BY engine WITH ROLLUP) B,(SELECT 2 pw) A ORDER BY TSize;

Total Storage Database and Storage Engine

SELECT IF(ISNULL(B.table_schema)+ISNULL(B.engine)=2,
"Storage for All Databases",IF(ISNULL(B.table_schema)+ISNULL(B.engine)=1,
CONCAT("Storage for ",B.table_schema),
CONCAT(B.engine," Tables for ",B.table_schema))) Statistic,
CONCAT(LPAD(REPLACE(FORMAT(B.DSize/POWER(1024,pw),3),',',''),17,' '),' ',
SUBSTR(' KMGTP',pw+1,1),'B') "DataSize",
CONCAT(LPAD(REPLACE(FORMAT(B.ISize/POWER(1024,pw),3),',',''),17,' '),' ',
SUBSTR(' KMGTP',pw+1,1),'B') "IndexSize",
CONCAT(LPAD(REPLACE(FORMAT(B.TSize/POWER(1024,pw),3),',',''),17,' '),' ',
SUBSTR(' KMGTP',pw+1,1),'B') "Table Size" FROM
(SELECT table_schema,engine,SUM(data_length) DSize,
SUM(index_length) ISize,SUM(data_length+index_length) TSize
FROM information_schema.tables WHERE table_schema NOT IN
('mysql','information_schema','performance_schema') AND
engine IS NOT NULL GROUP BY table_schema,engine WITH ROLLUP) B,
(SELECT 2 pw) A ORDER BY TSize;

Please note in all the queries you see a subquery that looks like this: (SELECT 2 pw)

  • (SELECT 0 pw) present the Database Sizes in Bytes
  • (SELECT 1 pw) present the Database Sizes in KiloBytes
  • (SELECT 2 pw) present the Database Sizes in MegaBytes
  • (SELECT 3 pw) present the Database Sizes in GigaBytes
  • (SELECT 4 pw) present the Database Sizes in TeraBytes
  • (SELECT 5 pw) present the Database Sizes in PetaBytes (If you ever run with this, email me)

The DB-Engines Ranking ranks database management systems according to their popularity. The ranking is updated monthly.

395 systems in ranking, September 2022 RankDBMSDatabase Model Score Sep
2022 Aug
2022 Sep
2021 Sep
2022 Aug
2022 Sep
2021 1. 1. 1.Oracle

Largest mysql database in the world
Detailed vendor-provided information availableRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Graph DBMS,
RDF store,
Spatial DBMS
1238.25 -22.54 -33.29 2. 2. 2.MySQL
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
1212.47 +9.61 -0.06 3. 3. 3.Microsoft SQL Server
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Graph DBMS,
Spatial DBMS
926.30 -18.66 -44.55 4. 4. 4.PostgreSQL
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
620.46 +2.46 +42.95 5. 5. 5.MongoDB
Largest mysql database in the world
Detailed vendor-provided information available
Document, Multi-model
Largest mysql database in the world
Document store,
Spatial DBMS,
Search engine,
Time Series DBMS
489.64 +11.97 -6.87 6. 6. 6.Redis
Largest mysql database in the world
Detailed vendor-provided information available
Key-value, Multi-model
Largest mysql database in the world
Key-value store,
Document store,
Graph DBMS,
Spatial DBMS,
Search engine,
Time Series DBMS
181.47 +5.08 +9.53 7.
Largest mysql database in the world
8.
Largest mysql database in the world
8.ElasticsearchSearch engine, Multi-model
Largest mysql database in the world
Search engine,
Document store,
Spatial DBMS
151.44 -3.64 -8.80 8.
Largest mysql database in the world
7.
Largest mysql database in the world
7.IBM Db2Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
RDF store,
Spatial DBMS
151.39 -5.83 -15.16 9. 9.
Largest mysql database in the world
11.Microsoft AccessRelational 140.03 -6.47 +23.09 10. 10.
Largest mysql database in the world
9.SQLite
Largest mysql database in the world
Detailed vendor-provided information available
Relational 138.82 -0.05 +10.17 11. 11.
Largest mysql database in the world
10.Cassandra
Largest mysql database in the world
Detailed vendor-provided information available
Wide column 119.11 +0.97 +0.12 12. 12. 12.MariaDB
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Graph DBMS,
Spatial DBMS
110.16 -3.74 +9.46 13. 13.
Largest mysql database in the world
21.Snowflake
Largest mysql database in the world
Detailed vendor-provided information available
Relational 103.50 +0.38 +51.43 14. 14.
Largest mysql database in the world
13.SplunkSearch engine 94.05 -3.39 +2.45 15. 15.
Largest mysql database in the world
16.Amazon DynamoDB
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Document store,
Key-value store
87.42 +0.16 +10.49 16. 16.
Largest mysql database in the world
15.Microsoft Azure SQL DatabaseRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Graph DBMS,
Spatial DBMS
84.42 -1.75 +6.16 17. 17.
Largest mysql database in the world
14.HiveRelational 78.43 -0.22 -7.14 18. 18.
Largest mysql database in the world
17.TeradataRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Graph DBMS,
Spatial DBMS,
Time Series DBMS
66.58 -2.49 -3.09 19. 19.
Largest mysql database in the world
18.Neo4j
Largest mysql database in the world
Detailed vendor-provided information available
Graph 59.48 +0.12 +1.85 20.
Largest mysql database in the world
22. DatabricksMulti-model
Largest mysql database in the world
Document store,
Relational DBMS
55.62 +1.00 21.
Largest mysql database in the world
20.
Largest mysql database in the world
22.SolrSearch engine, Multi-model
Largest mysql database in the world
Search engine,
Spatial DBMS
54.05 -1.73 +4.24 22.
Largest mysql database in the world
21.
Largest mysql database in the world
19.SAP HANA
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Graph DBMS,
Spatial DBMS
51.82 -3.14 -4.42 23. 23.
Largest mysql database in the world
20.FileMakerRelational 51.57 -1.55 -0.75 24. 24.
Largest mysql database in the world
25.Google BigQuery
Largest mysql database in the world
Detailed vendor-provided information available
Relational 50.12 +0.09 +6.20 25. 25.
Largest mysql database in the world
23.SAP Adaptive ServerRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Spatial DBMS
42.85 -1.96 -4.16 26. 26.
Largest mysql database in the world
24.HBaseWide column 41.97 -0.48 -3.08 27. 27.
Largest mysql database in the world
26.Microsoft Azure Cosmos DB
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Document store,
Graph DBMS,
Key-value store,
Wide column store,
Spatial DBMS
40.67 -0.70 +2.15 28. 28.
Largest mysql database in the world
27.PostGISSpatial DBMS, Multi-model
Largest mysql database in the world
Spatial DBMS,
Relational DBMS
30.81 -0.46 +0.11 29. 29.
Largest mysql database in the world
28.InfluxDB
Largest mysql database in the world
Detailed vendor-provided information available
Time Series, Multi-model
Largest mysql database in the world
Time Series DBMS,
Spatial DBMS
29.15 -0.63 -0.35 30. 30.
Largest mysql database in the world
29.Couchbase
Largest mysql database in the world
Detailed vendor-provided information available
Document, Multi-model
Largest mysql database in the world
Document store,
Key-value store,
Spatial DBMS
28.69 -0.10 +1.01 31. 31.
Largest mysql database in the world
32.Amazon Redshift
Largest mysql database in the world
Detailed vendor-provided information available
Relational 26.37 +0.20 +2.51 32.
Largest mysql database in the world
33.
Largest mysql database in the world
30.MemcachedKey-value 25.02 +0.38 -0.64 33.
Largest mysql database in the world
32.
Largest mysql database in the world
31.FirebirdRelational 24.00 -0.93 -0.82 34. 34.
Largest mysql database in the world
33.InformixRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS,
Time Series DBMS
23.25 -0.92 +0.30 35. 35.
Largest mysql database in the world
34.Spark SQLRelational 22.61 -1.11 +0.74 36. 36.
Largest mysql database in the world
39.Microsoft Azure Synapse AnalyticsRelational 22.60 +0.14 +5.94 37. 37.
Largest mysql database in the world
35.Vertica
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Spatial DBMS,
Time Series DBMS
20.03 -0.10 -0.43 38. 38. 38.Firebase Realtime DatabaseDocument 19.08 +0.28 +1.05 39. 39.
Largest mysql database in the world
36.NetezzaRelational 17.92 -0.85 -1.90 40. 40.
Largest mysql database in the world
37.ImpalaRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store
17.55 0.00 -1.09 41. 41.
Largest mysql database in the world
40.CouchDBDocument, Multi-model
Largest mysql database in the world
Document store,
Spatial DBMS
16.56 -0.46 +1.09 42. 42.
Largest mysql database in the world
41.dBASERelational 14.84 -0.50 +0.77 43. 43. 43.PrestoRelational 13.62 +0.16 +0.27 44.
Largest mysql database in the world
46.
Largest mysql database in the world
45.ClickHouseRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Time Series DBMS
13.45 +0.27 +2.82 45.
Largest mysql database in the world
44.
Largest mysql database in the world
42.GreenplumRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
12.85 -0.48 -0.75 46.
Largest mysql database in the world
45.
Largest mysql database in the world
44.Amazon AuroraRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store
12.84 -0.43 +1.37 47.
Largest mysql database in the world
49.
Largest mysql database in the world
54.Google Cloud FirestoreDocument 10.27 +0.24 +2.17 48.
Largest mysql database in the world
47.
Largest mysql database in the world
47.HazelcastKey-value, Multi-model
Largest mysql database in the world
Key-value store,
Document store
10.06 -0.63 +0.25 49.
Largest mysql database in the world
51.
Largest mysql database in the world
48.H2Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Spatial DBMS
9.72 -0.09 +0.03 50.
Largest mysql database in the world
48.
Largest mysql database in the world
46.etcdKey-value 9.50 -0.81 -0.82 51.
Largest mysql database in the world
52.
Largest mysql database in the world
49.MarkLogicMulti-model
Largest mysql database in the world
Document store,
Native XML DBMS,
RDF store,
Search engine
9.49 -0.14 -0.11 52.
Largest mysql database in the world
50.
Largest mysql database in the world
50.Realm
Largest mysql database in the world
Detailed vendor-provided information available
Document 9.31 -0.51 -0.20 53.
Largest mysql database in the world
55. OpenSearch
Largest mysql database in the world
Detailed vendor-provided information available
Search engine 8.81 +0.21 54.
Largest mysql database in the world
56.
Largest mysql database in the world
52.Oracle EssbaseRelational 8.65 +0.12 +0.29 55.
Largest mysql database in the world
54.
Largest mysql database in the world
56.AlgoliaSearch engine 8.23 -0.43 +0.93 56.
Largest mysql database in the world
57.
Largest mysql database in the world
51.Datastax Enterprise
Largest mysql database in the world
Detailed vendor-provided information available
Wide column, Multi-model
Largest mysql database in the world
Wide column store,
Document store,
Graph DBMS,
Spatial DBMS,
Search engine
8.18 -0.28 -0.77 57.
Largest mysql database in the world
53.
Largest mysql database in the world
53.Kdb+Time Series, Multi-model
Largest mysql database in the world
Time Series DBMS,
Relational DBMS
8.14 -1.20 +0.01 58. 58. 58.Microsoft Azure SearchSearch engine 7.62 -0.14 +0.76 59. 59. 59.CockroachDB
Largest mysql database in the world
Detailed vendor-provided information available
Relational 7.58 +0.04 +0.84 60. 60.
Largest mysql database in the world
64.Microsoft Azure Data Explorer
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Event Store,
Spatial DBMS,
Search engine,
Time Series DBMS
7.34 +0.04 +1.69 61.
Largest mysql database in the world
62.
Largest mysql database in the world
67.SingleStore
Largest mysql database in the world
Detailed vendor-provided information available
Largest mysql database in the world
Sponsored post
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS,
Time Series DBMS
7.25 +0.22 +1.73 62.
Largest mysql database in the world
63.
Largest mysql database in the world
57.EhcacheKey-value 6.87 -0.16 -0.14 63.
Largest mysql database in the world
64.
Largest mysql database in the world
55.SphinxSearch engine 6.76 -0.19 -0.88 64.
Largest mysql database in the world
61.
Largest mysql database in the world
74.IgniteMulti-model
Largest mysql database in the world
Key-value store,
Relational DBMS
6.71 -0.34 +1.87 65. 65.
Largest mysql database in the world
70.Aerospike
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Document store,
Key-value store,
Spatial DBMS
6.65 -0.20 +1.32 66.
Largest mysql database in the world
67.
Largest mysql database in the world
80.Google Cloud DatastoreDocument 6.61 +0.17 +2.24 67.
Largest mysql database in the world
72.
Largest mysql database in the world
71.GraphiteTime Series 6.56 +0.52 +1.46 68.
Largest mysql database in the world
66.
Largest mysql database in the world
60.PrometheusTime Series 6.53 -0.09 +0.09 69. 69.
Largest mysql database in the world
66.Riak KVKey-value 6.25 -0.04 +0.66 70. 70.
Largest mysql database in the world
65.IngresRelational 6.11 -0.08 +0.46 71.
Largest mysql database in the world
68.
Largest mysql database in the world
61.InterbaseRelational 6.07 -0.31 -0.22 72.
Largest mysql database in the world
73.
Largest mysql database in the world
75.ArangoDB
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Document store,
Graph DBMS,
Key-value store,
Search engine
6.02 +0.11 +1.23 73.
Largest mysql database in the world
71.
Largest mysql database in the world
79.Virtuoso
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Document store,
Graph DBMS,
Native XML DBMS,
Relational DBMS,
RDF store,
Search engine,
Spatial DBMS
5.96 -0.20 +1.54 74. 74.
Largest mysql database in the world
62.SAP SQL AnywhereRelational 5.67 -0.10 -0.16 75.
Largest mysql database in the world
77.
Largest mysql database in the world
68.Microsoft Azure Table StorageWide column 5.67 +0.14 +0.16 76.
Largest mysql database in the world
75.
Largest mysql database in the world
63.JackrabbitContent 5.48 -0.15 -0.32 77.
Largest mysql database in the world
76.
Largest mysql database in the world
73.HyperSQLRelational 5.38 -0.22 +0.46 78.
Largest mysql database in the world
79.
Largest mysql database in the world
77.DerbyRelational 5.23 +0.03 +0.54 79.
Largest mysql database in the world
80.
Largest mysql database in the world
85.Google Cloud BigtableMulti-model
Largest mysql database in the world
Key-value store,
Wide column store
5.03 +0.20 +1.05 80.
Largest mysql database in the world
81.
Largest mysql database in the world
89.TimescaleDB
Largest mysql database in the world
Detailed vendor-provided information available
Time Series, Multi-model
Largest mysql database in the world
Time Series DBMS,
Relational DBMS
4.87 +0.08 +1.15 81.
Largest mysql database in the world
78.
Largest mysql database in the world
82.OrientDBMulti-model
Largest mysql database in the world
Document store,
Graph DBMS,
Key-value store
4.81 -0.39 +0.57 82.
Largest mysql database in the world
83.
Largest mysql database in the world
72.SAP IQRelational 4.68 +0.12 -0.25 83.
Largest mysql database in the world
82.
Largest mysql database in the world
78.AdabasMultivalue 4.66 -0.02 +0.04 84. 84.
Largest mysql database in the world
69.OpenEdgeRelational 4.46 -0.04 -1.03 85. 85.
Largest mysql database in the world
81.UniData,UniVerseMultivalue 4.41 -0.02 +0.14 86. 86.
Largest mysql database in the world
83.Oracle NoSQLMulti-model
Largest mysql database in the world
Document store,
Key-value store,
Relational DBMS
4.41 +0.03 +0.18 87.
Largest mysql database in the world
91.
Largest mysql database in the world
90.ScyllaDB
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Key-value store,
Wide column store
4.31 +0.50 +0.77 88.
Largest mysql database in the world
89.
Largest mysql database in the world
95.Google Cloud SpannerRelational 4.31 +0.20 +1.12 89.
Largest mysql database in the world
87.
Largest mysql database in the world
88.RocksDB
Largest mysql database in the world
Detailed vendor-provided information available
Key-value 4.26 -0.03 +0.53 90.
Largest mysql database in the world
88.
Largest mysql database in the world
86.AccumuloWide column 4.12 -0.04 +0.18 91.
Largest mysql database in the world
90.
Largest mysql database in the world
92.RavenDB
Largest mysql database in the world
Detailed vendor-provided information available
Document, Multi-model
Largest mysql database in the world
Document store,
Graph DBMS,
Spatial DBMS,
Time Series DBMS
4.12 +0.23 +0.66 92.
Largest mysql database in the world
94.
Largest mysql database in the world
121.Trino
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Key-value store,
Spatial DBMS,
Search engine,
Time Series DBMS,
Wide column store
3.79 +0.18 +1.85 93.
Largest mysql database in the world
96.
Largest mysql database in the world
91.IBM CloudantDocument 3.77 +0.22 +0.28 94.
Largest mysql database in the world
93.
Largest mysql database in the world
106.TiDB
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store
3.73 +0.12 +1.08 95.
Largest mysql database in the world
92.
Largest mysql database in the world
76.MaxDBRelational 3.73 -0.06 -0.99 96.
Largest mysql database in the world
98. 96.RethinkDBDocument, Multi-model
Largest mysql database in the world
Document store,
Spatial DBMS
3.54 +0.16 +0.39 97.
Largest mysql database in the world
95.
Largest mysql database in the world
87.SAP Advantage Database ServerRelational 3.49 -0.07 -0.43 98.
Largest mysql database in the world
100.
Largest mysql database in the world
100.PouchDBDocument 3.48 +0.15 +0.62 99.
Largest mysql database in the world
101.
Largest mysql database in the world
98.LevelDBKey-value 3.38 +0.05 +0.41 100.
Largest mysql database in the world
97.
Largest mysql database in the world
159.YugabyteDB
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Wide column store
3.38 -0.15 +2.17 101.
Largest mysql database in the world
99.
Largest mysql database in the world
103.InfinispanKey-value 3.30 -0.05 +0.50 102.
Largest mysql database in the world
103.
Largest mysql database in the world
114.Amazon NeptuneMulti-model
Largest mysql database in the world
Graph DBMS,
RDF store
3.19 +0.11 +0.78 103.
Largest mysql database in the world
106.
Largest mysql database in the world
97.Apache PhoenixRelational 3.16 +0.19 +0.10 104.
Largest mysql database in the world
102.
Largest mysql database in the world
84.EXASOLRelational 3.07 -0.11 -0.95 105.
Largest mysql database in the world
108.
Largest mysql database in the world
102.Apache Jena - TDBRDF 3.00 +0.18 +0.16 106.
Largest mysql database in the world
107.
Largest mysql database in the world
99.Oracle Berkeley DBMulti-model
Largest mysql database in the world
Key-value store,
Native XML DBMS
2.98 +0.11 +0.07 107.
Largest mysql database in the world
104.
Largest mysql database in the world
104.Apache DrillMulti-model
Largest mysql database in the world
Document store,
Relational DBMS
2.98 -0.10 +0.19 108.
Largest mysql database in the world
105.
Largest mysql database in the world
94.InterSystems CachéMulti-model
Largest mysql database in the world
Key-value store,
Object oriented DBMS,
Relational DBMS,
Document store
2.90 -0.10 -0.33 109.
Largest mysql database in the world
115.
Largest mysql database in the world
113.Percona Server for MySQLRelational 2.79 +0.26 +0.36 110.
Largest mysql database in the world
109.
Largest mysql database in the world
107.4DRelational 2.78 0.00 +0.13 111.
Largest mysql database in the world
110.
Largest mysql database in the world
115.CloudKitDocument 2.77 0.00 +0.43 112.
Largest mysql database in the world
116.
Largest mysql database in the world
111.JanusGraphGraph 2.64 +0.12 +0.06 113.
Largest mysql database in the world
114.
Largest mysql database in the world
101.IMSNavigational 2.64 +0.09 -0.20 114.
Largest mysql database in the world
111.
Largest mysql database in the world
93.Apache DruidMulti-model
Largest mysql database in the world
Relational DBMS,
Time Series DBMS
2.63 -0.10 -0.64 115.
Largest mysql database in the world
112.
Largest mysql database in the world
110.LMDBKey-value 2.63 +0.06 +0.04 116.
Largest mysql database in the world
113.
Largest mysql database in the world
109.GraphDB
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Graph DBMS,
RDF store
2.52 -0.02 -0.08 117. 117.
Largest mysql database in the world
112.RRDtoolTime Series 2.51 -0.01 +0.07 118.
Largest mysql database in the world
119.
Largest mysql database in the world
105.Oracle CoherenceKey-value 2.49 +0.13 -0.21 119.
Largest mysql database in the world
118.
Largest mysql database in the world
130.InterSystems IRISMulti-model
Largest mysql database in the world
Document store,
Key-value store,
Object oriented DBMS,
Relational DBMS
2.46 +0.01 +0.72 120.
Largest mysql database in the world
123.
Largest mysql database in the world
117.Amazon SimpleDBKey-value 2.36 +0.21 +0.18 121. 121.
Largest mysql database in the world
116.Amazon CloudSearchSearch engine 2.35 +0.11 +0.16 122.
Largest mysql database in the world
125.
Largest mysql database in the world
128.GridGainMulti-model
Largest mysql database in the world
Key-value store,
Relational DBMS
2.27 +0.19 +0.49 123.
Largest mysql database in the world
126.
Largest mysql database in the world
124.OpenTSDBTime Series 2.23 +0.19 +0.36 124.
Largest mysql database in the world
120. CoveoSearch engine 2.19 -0.14 125.
Largest mysql database in the world
122.
Largest mysql database in the world
123.TigerGraph
Largest mysql database in the world
Detailed vendor-provided information available
Graph 2.14 -0.03 +0.24 126.
Largest mysql database in the world
127.
Largest mysql database in the world
122.SpatiaLiteSpatial DBMS, Multi-model
Largest mysql database in the world
Spatial DBMS,
Relational DBMS
2.14 +0.19 +0.23 127.
Largest mysql database in the world
124.
Largest mysql database in the world
108.EDB Postgres
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
2.11 -0.01 -0.51 128.
Largest mysql database in the world
133.
Largest mysql database in the world
134.IBM Db2 warehouseRelational 1.95 +0.22 +0.26 129.
Largest mysql database in the world
131.
Largest mysql database in the world
125.DatomicRelational 1.92 +0.18 +0.08 130. 130.
Largest mysql database in the world
143.Amazon DocumentDBDocument 1.92 +0.14 +0.50 131.
Largest mysql database in the world
129.
Largest mysql database in the world
120.MonetDBRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
1.91 +0.11 -0.06 132.
Largest mysql database in the world
128.
Largest mysql database in the world
118.TiberoRelational 1.90 -0.04 -0.21 133.
Largest mysql database in the world
136.
Largest mysql database in the world
119.TimesTenRelational 1.89 +0.22 -0.13 134.
Largest mysql database in the world
135.
Largest mysql database in the world
137.GeodeKey-value 1.84 +0.13 +0.21 135.
Largest mysql database in the world
134.
Largest mysql database in the world
141.CitusRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store
1.83 +0.12 +0.36 136.
Largest mysql database in the world
146.
Largest mysql database in the world
144.HEAVY.AI
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Spatial DBMS
1.73 +0.24 +0.35 137.
Largest mysql database in the world
143.
Largest mysql database in the world
129.jBASEMultivalue 1.70 +0.15 -0.08 138.
Largest mysql database in the world
137.
Largest mysql database in the world
136.Db4oObject oriented 1.69 +0.02 +0.03 139.
Largest mysql database in the world
140.
Largest mysql database in the world
133.BaseXNative XML 1.69 +0.10 -0.03 140.
Largest mysql database in the world
132.
Largest mysql database in the world
126.mSQLRelational 1.68 -0.06 -0.15 141.
Largest mysql database in the world
138.
Largest mysql database in the world
135.Stardog
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Graph DBMS,
RDF store
1.67 +0.01 -0.03 142. 142.
Largest mysql database in the world
132.VoltDBRelational 1.66 +0.09 -0.06 143.
Largest mysql database in the world
150.
Largest mysql database in the world
140.ObjectStoreObject oriented 1.63 +0.24 +0.14 144.
Largest mysql database in the world
139.
Largest mysql database in the world
169.DolphinDBTime Series, Multi-model
Largest mysql database in the world
Time Series DBMS,
Relational DBMS
1.62 +0.03 +0.54 145.
Largest mysql database in the world
144.
Largest mysql database in the world
138.TarantoolKey-value, Multi-model
Largest mysql database in the world
Key-value store,
Document store,
Relational DBMS,
Spatial DBMS
1.62 +0.09 +0.07 146.
Largest mysql database in the world
151.
Largest mysql database in the world
131.FaunaMulti-model
Largest mysql database in the world
Document store,
Graph DBMS,
Relational DBMS,
Time Series DBMS
1.56 +0.18 -0.17 147.
Largest mysql database in the world
145.
Largest mysql database in the world
146.Actian NoSQL DatabaseObject oriented 1.52 +0.00 +0.17 148.
Largest mysql database in the world
154.
Largest mysql database in the world
222.QuestDB
Largest mysql database in the world
Detailed vendor-provided information available
Time Series, Multi-model
Largest mysql database in the world
Time Series DBMS,
Relational DBMS
1.51 +0.23 +0.90 149. 149.
Largest mysql database in the world
150.FoundationDBMulti-model
Largest mysql database in the world
Document store,
Key-value store,
Relational DBMS
1.50 +0.12 +0.18 150.
Largest mysql database in the world
152.
Largest mysql database in the world
161.LiteDBDocument 1.49 +0.16 +0.30 151.
Largest mysql database in the world
148.
Largest mysql database in the world
145.HFSQLRelational 1.48 +0.08 +0.13 152.
Largest mysql database in the world
141.
Largest mysql database in the world
127.DgraphGraph 1.48 -0.09 -0.34 153.
Largest mysql database in the world
147.
Largest mysql database in the world
149.MnesiaDocument 1.47 +0.06 +0.15 154.
Largest mysql database in the world
155.
Largest mysql database in the world
151.Apache Kylin
Largest mysql database in the world
Detailed vendor-provided information available
Relational 1.39 +0.11 +0.09 155.
Largest mysql database in the world
169.
Largest mysql database in the world
185.ObjectBoxObject oriented, Multi-model
Largest mysql database in the world
Object oriented DBMS,
Time Series DBMS
1.33 +0.24 +0.43 156.
Largest mysql database in the world
157.
Largest mysql database in the world
147.GridDB
Largest mysql database in the world
Detailed vendor-provided information available
Time Series, Multi-model
Largest mysql database in the world
Time Series DBMS,
Key-value store,
Relational DBMS
1.33 +0.08 -0.01 157.
Largest mysql database in the world
166.
Largest mysql database in the world
264.TDengine
Largest mysql database in the world
Detailed vendor-provided information available
Time Series, Multi-model
Largest mysql database in the world
Time Series DBMS,
Relational DBMS
1.31 +0.18 +0.98 158.
Largest mysql database in the world
160.
Largest mysql database in the world
148.SQLBaseRelational 1.31 +0.07 -0.03 159.
Largest mysql database in the world
161.
Largest mysql database in the world
170.GBaseRelational 1.28 +0.07 +0.21 160.
Largest mysql database in the world
153.
Largest mysql database in the world
177.SednaNative XML 1.28 -0.04 +0.30 161.
Largest mysql database in the world
156.
Largest mysql database in the world
142.GT.MKey-value 1.27 -0.01 -0.18 162.
Largest mysql database in the world
165.
Largest mysql database in the world
157.Oracle RdbRelational 1.24 +0.07 -0.02 163.
Largest mysql database in the world
158.
Largest mysql database in the world
158.CubridRelational 1.22 -0.02 -0.01 164. 164.
Largest mysql database in the world
152.DatameerDocument 1.22 +0.03 -0.09 165.
Largest mysql database in the world
159.
Largest mysql database in the world
164.D3Multivalue 1.20 -0.04 +0.08 166.
Largest mysql database in the world
162.
Largest mysql database in the world
154.GiraphGraph 1.20 0.00 -0.09 167.
Largest mysql database in the world
163.
Largest mysql database in the world
153.EmpressRelational 1.19 0.00 -0.10 168.
Largest mysql database in the world
167.
Largest mysql database in the world
165.NonStop SQLRelational 1.18 +0.05 +0.06 169.
Largest mysql database in the world
171.
Largest mysql database in the world
168.NebulaGraph
Largest mysql database in the world
Detailed vendor-provided information available
Graph 1.18 +0.10 +0.08 170.
Largest mysql database in the world
168.
Largest mysql database in the world
163.DataEaseRelational 1.16 +0.05 +0.02 171.
Largest mysql database in the world
170.
Largest mysql database in the world
155.Model 204Multivalue 1.13 +0.04 -0.13 172.
Largest mysql database in the world
174.
Largest mysql database in the world
156.AllegroGraph
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Document store,
Graph DBMS,
RDF store,
Spatial DBMS
1.12 +0.07 -0.13 173.
Largest mysql database in the world
180.
Largest mysql database in the world
181.HPE Ezmeral Data FabricMulti-model
Largest mysql database in the world
Document store,
Wide column store
1.09 +0.14 +0.18 174.
Largest mysql database in the world
172.
Largest mysql database in the world
139.1010dataRelational 1.09 +0.04 -0.42 175.
Largest mysql database in the world
176.
Largest mysql database in the world
196.Amazon TimestreamTime Series 1.09 +0.12 +0.30 176.
Largest mysql database in the world
181.
Largest mysql database in the world
166.AltibaseRelational 1.09 +0.14 -0.02 177.
Largest mysql database in the world
175.
Largest mysql database in the world
160.InfobrightRelational 1.07 +0.02 -0.13 178.
Largest mysql database in the world
173.
Largest mysql database in the world
173.Apache HAWQRelational 1.06 +0.00 +0.04 179.
Largest mysql database in the world
186.
Largest mysql database in the world
178.NCache
Largest mysql database in the world
Detailed vendor-provided information available
Key-value, Multi-model
Largest mysql database in the world
Key-value store,
Document store,
Search engine
1.05 +0.15 +0.07 180.
Largest mysql database in the world
179.
Largest mysql database in the world
234.GigaSpaces
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Document store,
Object oriented DBMS,
Graph DBMS,
Search engine
1.04 +0.09 +0.51 181.
Largest mysql database in the world
177.
Largest mysql database in the world
162.SQL.JSRelational 1.04 +0.08 -0.12 182.
Largest mysql database in the world
187.
Largest mysql database in the world
206.PerstObject oriented 1.01 +0.11 +0.29 183.
Largest mysql database in the world
182.
Largest mysql database in the world
174.ZODBKey-value 0.99 +0.05 -0.02 184.
Largest mysql database in the world
183.
Largest mysql database in the world
186.CrateDB
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Relational DBMS,
Search engine,
Document store,
Time Series DBMS
0.99 +0.06 +0.10 185.
Largest mysql database in the world
178.
Largest mysql database in the world
167.NuoDBRelational 0.97 +0.01 -0.14 186.
Largest mysql database in the world
189.
Largest mysql database in the world
189.EventStoreDBEvent 0.97 +0.09 +0.10 187.
Largest mysql database in the world
184.
Largest mysql database in the world
198.eXist-dbNative XML 0.95 +0.02 +0.17 188.
Largest mysql database in the world
185. MatrixOneRelational 0.94 +0.02 189.
Largest mysql database in the world
188.
Largest mysql database in the world
195.Graph EngineMulti-model
Largest mysql database in the world
Graph DBMS,
Key-value store
0.93 +0.05 +0.13 190.
Largest mysql database in the world
198. OceanBase
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Wide column store
0.92 +0.14 191.
Largest mysql database in the world
200.
Largest mysql database in the world
201.Splice MachineRelational 0.92 +0.15 +0.17 192.
Largest mysql database in the world
190.
Largest mysql database in the world
183.BlazegraphMulti-model
Largest mysql database in the world
Graph DBMS,
RDF store
0.89 +0.03 -0.02 193.
Largest mysql database in the world
194. 193.TypeDB
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Graph DBMS,
Relational DBMS
0.87 +0.05 +0.05 194.
Largest mysql database in the world
206. openGaussRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
0.87 +0.12 195.
Largest mysql database in the world
191.
Largest mysql database in the world
176.MatisseObject oriented 0.86 +0.00 -0.14 196.
Largest mysql database in the world
203.
Largest mysql database in the world
217.RDF4JRDF 0.82 +0.05 +0.16 197.
Largest mysql database in the world
210. MeilisearchSearch engine 0.82 +0.08 198.
Largest mysql database in the world
208.
Largest mysql database in the world
202.OpenBaseRelational 0.81 +0.06 +0.06 199.
Largest mysql database in the world
192. 199.YellowbrickRelational 0.81 -0.02 +0.04 200.
Largest mysql database in the world
201.
Largest mysql database in the world
207.GeoMesaSpatial DBMS 0.80 +0.03 +0.09 201.
Largest mysql database in the world
193.
Largest mysql database in the world
171.IDMSNavigational 0.80 -0.03 -0.27 202.
Largest mysql database in the world
197.
Largest mysql database in the world
188.Actian VectorRelational 0.80 +0.00 -0.08 203.
Largest mysql database in the world
195.
Largest mysql database in the world
182.FrontBaseRelational 0.79 -0.03 -0.12 204.
Largest mysql database in the world
213.
Largest mysql database in the world
190.DBISAMRelational 0.79 +0.10 -0.06 205.
Largest mysql database in the world
196.
Largest mysql database in the world
172.Objectivity/DBObject oriented 0.79 -0.02 -0.24 206.
Largest mysql database in the world
204.
Largest mysql database in the world
194.XapianSearch engine 0.79 +0.03 -0.04 207.
Largest mysql database in the world
205.
Largest mysql database in the world
227.VictoriaMetricsTime Series 0.77 +0.02 +0.19 208.
Largest mysql database in the world
209.
Largest mysql database in the world
187.solidDBRelational 0.77 +0.03 -0.12 209.
Largest mysql database in the world
207.
Largest mysql database in the world
219.Percona Server for MongoDBDocument 0.77 +0.01 +0.12 210.
Largest mysql database in the world
236.
Largest mysql database in the world
289.DuckDBRelational 0.77 +0.24 +0.57 211.
Largest mysql database in the world
199.
Largest mysql database in the world
191.BigchainDBDocument 0.76 -0.02 -0.08 212.
Largest mysql database in the world
202.
Largest mysql database in the world
184.KognitioRelational 0.75 -0.02 -0.15 213.
Largest mysql database in the world
217.
Largest mysql database in the world
210.DoltRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store
0.73 +0.09 +0.03 214.
Largest mysql database in the world
211.
Largest mysql database in the world
179.Datacom/DBRelational 0.72 -0.01 -0.22 215.
Largest mysql database in the world
212.
Largest mysql database in the world
175.GemStone/SObject oriented 0.70 -0.01 -0.30 216.
Largest mysql database in the world
215.
Largest mysql database in the world
212.R:BASERelational 0.69 +0.03 +0.01 217.
Largest mysql database in the world
216.
Largest mysql database in the world
213.Postgres-XLRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
0.69 +0.03 +0.01 218.
Largest mysql database in the world
220.
Largest mysql database in the world
208.eXtremeDB
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Relational DBMS,
Time Series DBMS
0.69 +0.07 -0.02 219.
Largest mysql database in the world
223.
Largest mysql database in the world
226.BoltDBKey-value 0.68 +0.09 +0.09 220.
Largest mysql database in the world
214.
Largest mysql database in the world
197.KairosDBTime Series 0.66 -0.01 -0.13 221.
Largest mysql database in the world
218.
Largest mysql database in the world
209.SciDBMultivalue 0.64 +0.01 -0.06 222.
Largest mysql database in the world
219.
Largest mysql database in the world
216.ObjectDBObject oriented 0.62 0.00 -0.04 223.
Largest mysql database in the world
226.
Largest mysql database in the world
215.AlaSQLMulti-model
Largest mysql database in the world
Document store,
Relational DBMS
0.62 +0.06 -0.05 224.
Largest mysql database in the world
227.
Largest mysql database in the world
235.Amazon KeyspacesWide column 0.61 +0.05 +0.10 225.
Largest mysql database in the world
235.
Largest mysql database in the world
221.NexusDBRelational 0.60 +0.07 -0.04 226.
Largest mysql database in the world
221.
Largest mysql database in the world
203.WebSphere eXtreme ScaleKey-value 0.60 -0.02 -0.16 227.
Largest mysql database in the world
228.
Largest mysql database in the world
214.SQream DB
Largest mysql database in the world
Detailed vendor-provided information available
Relational 0.60 +0.04 -0.08 228.
Largest mysql database in the world
238.
Largest mysql database in the world
244.HibariKey-value 0.58 +0.06 +0.12 229. 229.
Largest mysql database in the world
233.MapDBKey-value 0.58 +0.03 +0.05 230.
Largest mysql database in the world
241.
Largest mysql database in the world
282.M3DB
Largest mysql database in the world
Detailed vendor-provided information available
Time Series 0.58 +0.07 +0.33 231.
Largest mysql database in the world
234.
Largest mysql database in the world
242.4storeRDF 0.57 +0.04 +0.09 232.
Largest mysql database in the world
231.
Largest mysql database in the world
224.VistaDBRelational 0.56 +0.02 -0.03 233.
Largest mysql database in the world
244.
Largest mysql database in the world
240.Yandex Database (YDB)Multi-model
Largest mysql database in the world
Document store,
Relational DBMS
0.56 +0.07 +0.08 234.
Largest mysql database in the world
240.
Largest mysql database in the world
229.RocksetDocument, Multi-model
Largest mysql database in the world
Document store,
Relational DBMS,
Search engine
0.56 +0.05 +0.00 235.
Largest mysql database in the world
222.
Largest mysql database in the world
253.Northgate RealityMultivalue 0.56 -0.05 +0.15 236.
Largest mysql database in the world
239.
Largest mysql database in the world
243.TDSQL for MySQL
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
0.54 +0.02 +0.06 237.
Largest mysql database in the world
225.
Largest mysql database in the world
180.Alibaba Cloud MaxComputeRelational 0.54 -0.03 -0.39 238.
Largest mysql database in the world
249.
Largest mysql database in the world
259.SearchBloxSearch engine 0.54 +0.11 +0.17 239.
Largest mysql database in the world
224.
Largest mysql database in the world
258.TajoRelational 0.53 -0.04 +0.16 240.
Largest mysql database in the world
232.
Largest mysql database in the world
228.LokiJSDocument 0.53 -0.01 -0.05 241.
Largest mysql database in the world
242.
Largest mysql database in the world
254.StarcounterObject oriented 0.53 +0.03 +0.12 242.
Largest mysql database in the world
237.
Largest mysql database in the world
225.JadeObject oriented 0.50 -0.02 -0.09 243. 243.
Largest mysql database in the world
204.ScaleArcRelational 0.50 +0.00 -0.23 244.
Largest mysql database in the world
245.
Largest mysql database in the world
231.OpenInsightMultivalue 0.50 +0.02 -0.05 245.
Largest mysql database in the world
233.
Largest mysql database in the world
192.Alibaba Cloud AnalyticDB for MySQL
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store
0.49 -0.04 -0.35 246.
Largest mysql database in the world
230.
Largest mysql database in the world
205.Kinetica
Largest mysql database in the world
Detailed vendor-provided information available
Relational 0.47 -0.08 -0.26 247.
Largest mysql database in the world
246.
Largest mysql database in the world
232.TrafodionRelational 0.47 +0.00 -0.07 248.
Largest mysql database in the world
253.
Largest mysql database in the world
293.Apache IoTDB
Largest mysql database in the world
Detailed vendor-provided information available
Time Series 0.46 +0.05 +0.29 249.
Largest mysql database in the world
273. Apache DorisRelational 0.46 +0.15 250.
Largest mysql database in the world
264.
Largest mysql database in the world
277.Milvus
Largest mysql database in the world
Detailed vendor-provided information available
Search engine 0.46 +0.09 +0.20 251.
Largest mysql database in the world
271.
Largest mysql database in the world
270.KeyDBKey-value 0.45 +0.12 +0.16 252.
Largest mysql database in the world
258.
Largest mysql database in the world
200.HarperDB
Largest mysql database in the world
Detailed vendor-provided information available
Document 0.45 +0.05 -0.32 253.
Largest mysql database in the world
254.
Largest mysql database in the world
257.atotiObject oriented 0.44 +0.03 +0.07 254.
Largest mysql database in the world
247.
Largest mysql database in the world
237.Raima Database Manager
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Relational DBMS,
Time Series DBMS
0.44 -0.02 -0.05 255. 255.
Largest mysql database in the world
238.ScalarisKey-value 0.43 +0.03 -0.05 256.
Largest mysql database in the world
269. Apache PinotRelational 0.43 +0.08 257.
Largest mysql database in the world
251.
Largest mysql database in the world
230.Alibaba Cloud Log Service
Largest mysql database in the world
Detailed vendor-provided information available
Search engine 0.43 +0.01 -0.13 258.
Largest mysql database in the world
250.
Largest mysql database in the world
239.RasdamanMultivalue 0.42 +0.00 -0.06 259.
Largest mysql database in the world
248.
Largest mysql database in the world
245.RedlandRDF 0.41 -0.03 -0.05 260. 260. 260.Project VoldemortKey-value 0.40 +0.01 +0.04 261.
Largest mysql database in the world
267.
Largest mysql database in the world
272.Memgraph
Largest mysql database in the world
Detailed vendor-provided information available
Graph 0.40 +0.04 +0.12 262.
Largest mysql database in the world
252.
Largest mysql database in the world
248.IBM Db2 Event StoreMulti-model
Largest mysql database in the world
Event Store,
Time Series DBMS
0.39 -0.02 -0.06 263.
Largest mysql database in the world
265.
Largest mysql database in the world
262.Kingbase
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
0.39 +0.02 +0.04 264.
Largest mysql database in the world
259.
Largest mysql database in the world
223.Tokyo TyrantKey-value 0.38 -0.01 -0.23 265.
Largest mysql database in the world
262.
Largest mysql database in the world
241.SequoiadbMulti-model
Largest mysql database in the world
Document store,
Relational DBMS
0.37 -0.01 -0.11 266.
Largest mysql database in the world
257.
Largest mysql database in the world
220.ElassandraWide column, Multi-model
Largest mysql database in the world
Wide column store,
Search engine
0.36 -0.04 -0.27 267.
Largest mysql database in the world
266.
Largest mysql database in the world
246.ModeShapeContent 0.36 -0.01 -0.09 268.
Largest mysql database in the world
261.
Largest mysql database in the world
265.Tibco ComputeDBRelational 0.36 -0.03 +0.04 269.
Largest mysql database in the world
256.
Largest mysql database in the world
211.Alibaba Cloud ApsaraDB for PolarDB
Largest mysql database in the world
Detailed vendor-provided information available
Relational 0.35 -0.06 -0.34 270.
Largest mysql database in the world
263.
Largest mysql database in the world
236.InfiniteGraphGraph 0.35 -0.02 -0.15 271.
Largest mysql database in the world
272.
Largest mysql database in the world
255.Alibaba Cloud Table StoreWide column 0.34 +0.00 -0.06 272.
Largest mysql database in the world
268.
Largest mysql database in the world
218.Alibaba Cloud AnalyticDB for PostgreSQLRelational 0.32 -0.05 -0.34 273.
Largest mysql database in the world
275.
Largest mysql database in the world
252.BrytlytRelational 0.31 +0.01 -0.10 274. 274.
Largest mysql database in the world
311.HeroicTime Series 0.30 0.00 +0.20 275.
Largest mysql database in the world
279.
Largest mysql database in the world
291.Cloudflare Workers KVKey-value 0.30 +0.03 +0.11 276. 276.
Largest mysql database in the world
256.Kyligence Enterprise
Largest mysql database in the world
Detailed vendor-provided information available
Relational 0.29 +0.01 -0.09 277. 277.
Largest mysql database in the world
303.TransLatticeRelational 0.28 +0.01 +0.14 278.
Largest mysql database in the world
280.
Largest mysql database in the world
275.Comdb2Relational 0.27 +0.02 +0.01 279.
Largest mysql database in the world
282.
Largest mysql database in the world
283.Valentina ServerRelational 0.27 +0.03 +0.03 280.
Largest mysql database in the world
270. FeatureBaseRelational 0.26 -0.08 281.
Largest mysql database in the world
278.
Largest mysql database in the world
266.PipelineDBRelational 0.26 -0.01 -0.06 282.
Largest mysql database in the world
281.
Largest mysql database in the world
250.LovefieldRelational 0.26 +0.01 -0.16 283. 283.
Largest mysql database in the world
290.HugeGraphGraph 0.25 +0.03 +0.06 284.
Largest mysql database in the world
285.
Largest mysql database in the world
269.FlockDBGraph 0.23 +0.02 -0.06 285.
Largest mysql database in the world
289.
Largest mysql database in the world
292.TinkerGraphGraph 0.23 +0.03 +0.05 286.
Largest mysql database in the world
290.
Largest mysql database in the world
251.OpenQMMultivalue 0.23 +0.04 -0.19 287.
Largest mysql database in the world
294.
Largest mysql database in the world
288.StrabonRDF 0.22 +0.05 +0.02 288.
Largest mysql database in the world
287.
Largest mysql database in the world
247.Faircom DBMulti-model
Largest mysql database in the world
Key-value store,
Relational DBMS
0.22 +0.01 -0.23 289.
Largest mysql database in the world
284.
Largest mysql database in the world
249.Mimer SQLRelational 0.21 -0.01 -0.21 290.
Largest mysql database in the world
304.
Largest mysql database in the world
341.RedStoreRDF 0.20 +0.07 +0.18 291.
Largest mysql database in the world
286.
Largest mysql database in the world
261.AxibaseTime Series 0.20 -0.02 -0.16 292. 292.
Largest mysql database in the world
274.EsgynDBRelational 0.20 +0.01 -0.07 293.
Largest mysql database in the world
288.
Largest mysql database in the world
276.Riak TSTime Series 0.19 -0.02 -0.07 294.
Largest mysql database in the world
291.
Largest mysql database in the world
280.Actian FastObjectsObject oriented 0.19 +0.00 -0.06 295.
Largest mysql database in the world
293.
Largest mysql database in the world
302.Warp 10Time Series 0.19 +0.01 +0.04 296.
Largest mysql database in the world
295.
Largest mysql database in the world
301.CubicWebRDF 0.17 +0.01 +0.02 297.
Largest mysql database in the world
298. ArcadeDBMulti-model
Largest mysql database in the world
Document store,
Graph DBMS,
Key-value store,
Time Series DBMS
0.17 +0.01 298.
Largest mysql database in the world
316.
Largest mysql database in the world
315.Manticore SearchSearch engine, Multi-model
Largest mysql database in the world
Search engine,
Time Series DBMS
0.16 +0.05 +0.08 299. 299.
Largest mysql database in the world
273.LeanXcale
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Key-value store,
Relational DBMS
0.16 +0.01 -0.11 300.
Largest mysql database in the world
308.
Largest mysql database in the world
294.Weaviate
Largest mysql database in the world
Detailed vendor-provided information available
Search engine 0.16 +0.04 -0.01 301.
Largest mysql database in the world
320.
Largest mysql database in the world
268.FlureeGraph 0.16 +0.06 -0.15 302.
Largest mysql database in the world
305.
Largest mysql database in the world
307.ITTIARelational 0.16 +0.03 +0.03 303.
Largest mysql database in the world
301.
Largest mysql database in the world
348.SmallSQLRelational 0.15 +0.01 +0.14 304.
Largest mysql database in the world
303.
Largest mysql database in the world
343.ScaleOut StateServerKey-value 0.14 +0.01 +0.13 305.
Largest mysql database in the world
317.
Largest mysql database in the world
284.TerminusDBGraph, Multi-model
Largest mysql database in the world
Graph DBMS,
Document store,
RDF store
0.14 +0.03 -0.09 306.
Largest mysql database in the world
310.
Largest mysql database in the world
337.HGraphDBGraph 0.14 +0.02 +0.11 307.
Largest mysql database in the world
322.
Largest mysql database in the world
271.EJDBDocument 0.14 +0.04 -0.15 308.
Largest mysql database in the world
313.
Largest mysql database in the world
286.ElevateDBRelational 0.13 +0.02 -0.09 309.
Largest mysql database in the world
321. Fujitsu Enterprise Postgres
Largest mysql database in the world
Detailed vendor-provided information available
Relational, Multi-model
Largest mysql database in the world
Relational DBMS,
Document store,
Spatial DBMS
0.13 +0.03 310.
Largest mysql database in the world
315.
Largest mysql database in the world
354.Resin CacheKey-value 0.13 +0.02 +0.13 311.
Largest mysql database in the world
312.
Largest mysql database in the world
354.SparkleDBRDF 0.13 +0.01 +0.13 312.
Largest mysql database in the world
302.
Largest mysql database in the world
267.AnzoGraph DBMulti-model
Largest mysql database in the world
Graph DBMS,
RDF store
0.13 -0.01 -0.19 313.
Largest mysql database in the world
297.
Largest mysql database in the world
281.HyperGraphDBGraph 0.13 -0.04 -0.12 314.
Largest mysql database in the world
307.
Largest mysql database in the world
279.GeoSpockRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Time Series DBMS
0.12 0.00 -0.13 315.
Largest mysql database in the world
300.
Largest mysql database in the world
263.Alibaba Cloud TSDBTime Series 0.12 -0.03 -0.21 316.
Largest mysql database in the world
309.
Largest mysql database in the world
338.LinterRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Spatial DBMS
0.12 +0.00 +0.09 317.
Largest mysql database in the world
306.
Largest mysql database in the world
323.GraphBaseGraph 0.12 -0.01 +0.05 318.
Largest mysql database in the world
311.
Largest mysql database in the world
300.BadgerKey-value 0.12 +0.00 -0.03 319.
Largest mysql database in the world
323. QdrantSearch engine 0.12 +0.03 320.
Largest mysql database in the world
296.
Largest mysql database in the world
296.NEventStoreEvent 0.12 -0.05 -0.05 321.
Largest mysql database in the world
326.
Largest mysql database in the world
308.Actian PSQLRelational 0.12 +0.04 0.00 322.
Largest mysql database in the world
319.
Largest mysql database in the world
299.XtremeDataRelational 0.11 +0.00 -0.05 323.
Largest mysql database in the world
327.
Largest mysql database in the world
334.ImmudbKey-value, Multi-model
Largest mysql database in the world
Key-value store,
Relational DBMS
0.10 +0.02 +0.07 324.
Largest mysql database in the world
318.
Largest mysql database in the world
309.Bangdb
Largest mysql database in the world
Detailed vendor-provided information available
Multi-model
Largest mysql database in the world
Document store,
Graph DBMS,
Time Series DBMS,
Spatial DBMS
0.10 -0.01 -0.02 325.
Largest mysql database in the world
324. Speedb
Largest mysql database in the world
Detailed vendor-provided information available
Key-value 0.10 +0.01 326.
Largest mysql database in the world
314. AcebaseDocument 0.10 -0.01 327.
Largest mysql database in the world
328.
Largest mysql database in the world
278.TransbaseRelational 0.10 +0.02 -0.16 328.
Largest mysql database in the world
331. RDFoxMulti-model
Largest mysql database in the world
Graph DBMS,
RDF store
0.08 +0.01 329.
Largest mysql database in the world
325.
Largest mysql database in the world
306.SparkseeGraph 0.07 -0.01 -0.06 330.
Largest mysql database in the world
329. 330.AgensGraphMulti-model
Largest mysql database in the world
Graph DBMS,
Relational DBMS
0.07 0.00 +0.02 331.
Largest mysql database in the world
333.
Largest mysql database in the world
304.MulgaraRDF 0.06 +0.01 -0.07 332.
Largest mysql database in the world
330.
Largest mysql database in the world
285.QuasardbTime Series 0.06 0.00 -0.17 333.
Largest mysql database in the world
339.
Largest mysql database in the world
345.JaguarDBKey-value 0.06 +0.02 +0.05 334.
Largest mysql database in the world
335.
Largest mysql database in the world
354.SWC-DBWide column, Multi-model
Largest mysql database in the world
Wide column store,
Time Series DBMS
0.06 +0.01 +0.06 335.
Largest mysql database in the world
332. OushuDBRelational 0.06 0.00 336.
Largest mysql database in the world
334. Transwarp KunDBRelational 0.05 +0.00 337. 337. GalaxybaseGraph 0.05 +0.01 338. 338.
Largest mysql database in the world
287.Faircom EDGEMulti-model
Largest mysql database in the world
Key-value store,
Relational DBMS
0.05 +0.01 -0.16 339.
Largest mysql database in the world
350.
Largest mysql database in the world
340.SiaqodbObject oriented 0.05 +0.04 +0.03 340.
Largest mysql database in the world
348.
Largest mysql database in the world
305.VelocityDBMulti-model
Largest mysql database in the world
Graph DBMS,
Object oriented DBMS
0.04 +0.03 -0.09 341.
Largest mysql database in the world
340.
Largest mysql database in the world
295.H2GISSpatial DBMS, Multi-model
Largest mysql database in the world
Spatial DBMS,
Relational DBMS
0.04 +0.00 -0.13 342.
Largest mysql database in the world
355.
Largest mysql database in the world
319.InfinityDBKey-value 0.03 +0.03 -0.05 343.
Largest mysql database in the world
341.
Largest mysql database in the world
314.BigObjectRelational 0.03 +0.00 -0.06 344.
Largest mysql database in the world
342.
Largest mysql database in the world
320.ToroDBDocument 0.03 +0.00 -0.05 345.
Largest mysql database in the world
357.
Largest mysql database in the world
352.Sadas EngineRelational 0.02 +0.02 +0.02 346.
Largest mysql database in the world
357.
Largest mysql database in the world
333.XTDBDocument 0.02 +0.02 -0.02 347.
Largest mysql database in the world
357.
Largest mysql database in the world
298.STSdbKey-value 0.02 +0.02 -0.14 348.
Largest mysql database in the world
346.
Largest mysql database in the world
324.Hawkular MetricsTime Series 0.02 +0.01 -0.04 349.
Largest mysql database in the world
344.
Largest mysql database in the world
327.WakandaDBObject oriented 0.02 0.00 -0.03 350.
Largest mysql database in the world
336.
Largest mysql database in the world
316.DydraRDF 0.02 -0.02 -0.06 351.
Largest mysql database in the world
343.
Largest mysql database in the world
335.LedisDBKey-value 0.02 0.00 -0.02 352.
Largest mysql database in the world
353.
Largest mysql database in the world
312.MachbaseTime Series 0.02 +0.01 -0.08 353.
Largest mysql database in the world
357. Transwarp ArgoDBRelational, Multi-model
Largest mysql database in the world
Relational DBMS,
Search engine
0.01 +0.01 354.
Largest mysql database in the world
352.
Largest mysql database in the world
310.EllipticsKey-value 0.01 +0.01 -0.10 355.
Largest mysql database in the world
357.
Largest mysql database in the world
326.TerarkDBKey-value 0.01 +0.01 -0.05 356.
Largest mysql database in the world
349.
Largest mysql database in the world
318.SwayDBKey-value 0.01 0.00 -0.07 357. 357.
Largest mysql database in the world
354.TkrzwKey-value 0.01 +0.01 +0.01 358.
Largest mysql database in the world
354.
Largest mysql database in the world
344.OrigoDBMulti-model
Largest mysql database in the world
Document store,
Object oriented DBMS
0.01 +0.01 0.00 359.
Largest mysql database in the world
357.
Largest mysql database in the world
336.SiteWhereTime Series 0.01 +0.01 -0.03 360.
Largest mysql database in the world
357.
Largest mysql database in the world
329.ExorbyteSearch engine 0.01 +0.01 -0.05 360.
Largest mysql database in the world
357.
Largest mysql database in the world
354.HyperLevelDBKey-value 0.01 +0.01 +0.01 362.
Largest mysql database in the world
357.
Largest mysql database in the world
297.BluefloodTime Series 0.00 +0.00 -0.16 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.ActorDBRelational 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.BergDBKey-value 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
313.BrightstarDBRDF 0.00 ±0.00 -0.09 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.Cachelot.ioKey-value 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.CortexDBMulti-model
Largest mysql database in the world
Document store,
Key-value store
0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
351.
Largest mysql database in the world
347.CovenantSQLRelational 0.00 -0.01 -0.01 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.DaggerDBRelational 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.Edge IntelligenceRelational 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.EdgelessDBRelational 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.EloqueraObject oriented 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.HeliumKey-value 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
349.iBoxDBDocument 0.00 ±0.00 0.00 363.
Largest mysql database in the world
345.
Largest mysql database in the world
354.IndicaSearch engine 0.00 -0.02 ±0.00 363.
Largest mysql database in the world
356.
Largest mysql database in the world
353.IRONdbTime Series 0.00 0.00 0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.JasDBDocument 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
347.
Largest mysql database in the world
331.JethroDataRelational 0.00 -0.01 -0.04 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.K-DBRelational 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
321.Kyoto TycoonKey-value 0.00 ±0.00 -0.07 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.NewtsTime Series 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
342.NosDBDocument 0.00 ±0.00 -0.01 363.
Largest mysql database in the world
357.
Largest mysql database in the world
350.NSDbTime Series 0.00 ±0.00 0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
328.RaptorDBDocument 0.00 ±0.00 -0.05 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.RizhiyiSearch engine, Multi-model
Largest mysql database in the world
Search engine,
Time Series DBMS
0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.searchxmlMulti-model
Largest mysql database in the world
Native XML DBMS,
Search engine
0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
317.SenseiDBDocument 0.00 ±0.00 -0.08 363.
Largest mysql database in the world
357.
Largest mysql database in the world
332.SiriDBTime Series 0.00 ±0.00 -0.04 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.SpaceTimeSpatial DBMS, Multi-model
Largest mysql database in the world
Spatial DBMS,
Relational DBMS
0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.TomP2PKey-value 0.00 ±0.00 ±0.00 363.
Largest mysql database in the world
357. Transwarp StellarDBGraph 0.00 ±0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
346.UpscaledbKey-value 0.00 ±0.00 -0.01 363.
Largest mysql database in the world
357.
Largest mysql database in the world
325.WhiteDBDocument 0.00 ±0.00 -0.06 363.
Largest mysql database in the world
357.
Largest mysql database in the world
351.YaacomoRelational 0.00 ±0.00 0.00 363.
Largest mysql database in the world
357.
Largest mysql database in the world
354.YanzaTime Series 0.00 ±0.00 ±0.00

How big can MySQL database be?

MyISAM permits data and index files to grow up to 256TB by default, but this limit can be changed up to the maximum permissible size of 65,536TB (2567 − 1 bytes).

What is the largest Oracle database in the world?

Oracle has set a new record by powering 100 TERABYTE DATA WAREHOUSE. Their customers run four top 10 largest support system databases and powers nine top 10 UNIX OLTP.

Which database is best for MySQL?

9) Best Databases for 2021: MariaDB MariaDB is a popular Relational Database Management System that is compatible with MySQL Protocol and Clients. MariaDB can easily replace the MySQL server without any coding requirements. MariaDB supports columnar storage and has a Massively Parallel Distributed Data Architecture.