According to the following SQL commands run on SQLite3: CRE…

According to the following SQL commands run on SQLite3: CREATE TABLE t(id integer, name text); INSERT INTO t SELECT ABS(RANDOM()%100) AS id, ‘No name’ AS name FROM generate_series(1, 1000); CREATE INDEX name_idx ON t(name); CREATE INDEX id_idx ON t(id); SELECT * FROM dbstat; Using the above table to answer the following questions: If there is RAID level 0 using 3 hard drives for store B+ tree of table t, how many blocks for each drive? _______ blocks

Show the B-Tree Index(m=3) after insert the following input…

Show the B-Tree Index(m=3) after insert the following input index:                    5, 10, 5, 11, 4, 8, 6, 8, 13, 3, 6, 5, 6, 10.                  Note. Please show each steps, not only the final answer.     (Please upload file to answer the question.)

Let M=2 , N=3, bb=1 and input index key =  c, l, d, h, h, d,…

Let M=2 , N=3, bb=1 and input index key =  c, l, d, h, h, d, e, k, a, e, g, d, l, l, e, c, h, k, b, f, d, h, g, d, b, b, h. Show the external sorting using merge-sort.                                                 A.) Create runs (3 points)                                                      B.) Show merge pass (7 points) (Please upload file to answer the question.)