今回は複数のテーブルを結合するSQLのチューニングを行います。前回と同様にTPC-Hの環境を使います。今回の対象のSQLは以下の通りです。 select l_orderkey, sum(l_extendedprice * (1 - l_discount)) as revenue, o_orderdate, o_shippriority from customer, orders, lineitem ...
チューニング技術としてB-treeの次に重要なのは、 ハッシュ (hash) です。ハッシュとは 「ごちゃまぜ」 とか 「細切れ」 という意味で、 ハッシュドビーフとかハッシュポテトなどの料理名にも使われています。 ハッシュのポイントは分散です。キー値に ...
Cryptographic hash functions secure data by providing a unique fixed-length output for each input. These functions are essential in blockchain for data integrity and secure transactions. Understanding ...