select count(*) from AGGREGATION_TABLE | 1.26s PHOENIX-2.2.0-96-RUN1 |
| select count(1) from AGGREGATION_TABLE group by HOST | 1.21s PHOENIX-2.2.0-96-RUN1 |
|
select core, count(1) from AGGREGATION_TABLE group by CORE | 1.61s PHOENIX-2.2.0-96-RUN1 |
|
select core, host, sum(ACTIVE_VISITOR) from AGGREGATION_TABLE group by core, host | 2.51s PHOENIX-2.2.0-96-RUN1 |
|
select AVG(DB), MIN(CORE), MAX(ACTIVE_VISITOR) from AGGREGATION_TABLE where host='CS' and DOMAIN<>'Google.com' | 3.17s PHOENIX-2.2.0-96-RUN1 |
|
select round(date, 'day',50), sum(core)+2 from AGGREGATION_TABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 1.08s PHOENIX-2.2.0-96-RUN1 |
|
select trunc(date, 'hour', 1000), count(DB), count(ACTIVE_VISITOR) from AGGREGATION_TABLE where feature='Login' and (core<50 or db<20 or active_visitor > 200) group by trunc(date, 'hour', 1000) | 1.38s PHOENIX-2.2.0-96-RUN1 |
|
select count(active_visitor) count from AGGREGATION_TABLE | 2.04s PHOENIX-2.2.0-96-RUN1 |
|
select count(distinct active_visitor) count from AGGREGATION_TABLE | 2.31s PHOENIX-2.2.0-96-RUN1 |
|
select percentile_cont(0.9) within group (order by active_visitor asc) from AGGREGATION_TABLE | 2.28s PHOENIX-2.2.0-96-RUN1 |
|
select percentile_cont(0.1) within group (order by active_visitor desc) from AGGREGATION_TABLE | 2.26s PHOENIX-2.2.0-96-RUN1 |
|
select count(core), count(db), count(active_visitor) from AGGREGATION_TABLE | 2.73s PHOENIX-2.2.0-96-RUN1 |
|
select count(distinct core), count(distinct db), count(distinct active_visitor) from AGGREGATION_TABLE | 3.34s PHOENIX-2.2.0-96-RUN1 |
|
select percentile_cont(0.5) within group (order by core asc), percentile_cont(0.5) within group (order by db asc), percentile_cont(0.5) within group (order by active_visitor asc) from AGGREGATION_TABLE | 3.32s PHOENIX-2.2.0-96-RUN1 |
|
select core, count(db) count from AGGREGATION_TABLE group by CORE | 2.13s PHOENIX-2.2.0-96-RUN1 |
|
select core, count(distinct db) count from AGGREGATION_TABLE group by CORE | 3.21s PHOENIX-2.2.0-96-RUN1 |
|
select core, percentile_cont(0.9999) within group (order by db asc) from AGGREGATION_TABLE group by CORE | 3.3s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from AGGREGATION_TABLE where core IN (1,25,50,75,100) | 0.76s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from AGGREGATION_TABLE where core < 10 and db < 200 | 0.94s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from AGGREGATION_TABLE where core < 10 and active_visitor < 1000 | 0.74s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from AGGREGATION_TABLE where core > 90 | 0.83s PHOENIX-2.2.0-96-RUN1 |
|
LOAD DATA AGGREGATION_TABLE [2000000 ROWS] | 109.76s PHOENIX-2.2.0-96-RUN1 |
|
select count(1) from IN_LIKE_TABLE where K1 in ('Z', 'D', 'F', 'X') | 0.96s PHOENIX-2.2.0-96-RUN1 |
| select * from IN_LIKE_TABLE where K1 in ('A','B') and K2 in ('xxx1000000','xxx2000000','xxx2000001')
|
select * from IN_LIKE_TABLE where K1 in ('A', 'C', 'E', 'F', 'H') and K2 like 'xxxxxx1%' | 0.02s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from IN_LIKE_TABLE where K1 in ('X','A','B','C','D','E','F','G','H','I','Z') and K2 like '%1%' | 1.67s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from IN_LIKE_TABLE where (K1 in ('A','E','F','G','H','I','Z') or K1 like 'E%') and (K2 like '%xx1%' or K2 like '%xxxxxx2%') | 1.5s PHOENIX-2.2.0-96-RUN1 |
|
LOAD DATA IN_LIKE_TABLE [2000000 ROWS] | 90.31s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from INDEXED_TABLE | 1.09s PHOENIX-2.2.0-96-RUN1 |
| select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(*) from INDEXED_TABLE | 2.38s PHOENIX-2.2.0-96-RUN1 |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(*) from INDEXED_TABLE | 0.85s PHOENIX-2.2.0-96-RUN1 |
|
select /*+NO_INDEX*/ count(*) from INDEXED_TABLE | 2.3s PHOENIX-2.2.0-96-RUN1 |
|
select round(date, 'day',50), sum(core)+2 from INDEXED_TABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 0.22s PHOENIX-2.2.0-96-RUN1 |
|
select /*+NO_INDEX*/ round(date, 'day',50), sum(core)+2 from INDEXED_TABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 1.84s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from INDEXED_TABLE where core IN (1,100)
|
select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(core) from INDEXED_TABLE where core IN (1,100)
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core IN (1,100)
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core IN (1,100) | 1.23s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from INDEXED_TABLE where core IN (1,25,50,75,100)
|
select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100)
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100)
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 1.3s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.23s PHOENIX-2.2.0-96-RUN1 |
|
select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.73s PHOENIX-2.2.0-96-RUN1 |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.19s PHOENIX-2.2.0-96-RUN1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 1.51s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 1.43s PHOENIX-2.2.0-96-RUN1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 4.14s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from INDEXED_TABLE where core > 90 | 0.21s PHOENIX-2.2.0-96-RUN1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 90 | 1.37s PHOENIX-2.2.0-96-RUN1 |
|
select count(core) from INDEXED_TABLE where core > 0 | 1.12s PHOENIX-2.2.0-96-RUN1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 0 | 2.88s PHOENIX-2.2.0-96-RUN1 |
|
select db from INDEXED_TABLE where db >5 and db <7 order by db | 0.09s PHOENIX-2.2.0-96-RUN1 |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE where db >5 and db <7 order by db | 2.3s PHOENIX-2.2.0-96-RUN1 |
|
select db from INDEXED_TABLE order by db limit 10 | 0.07s PHOENIX-2.2.0-96-RUN1 |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE order by db limit 10 | 3.51s PHOENIX-2.2.0-96-RUN1 |
|
CREATE INDEX idx5 ON INDEXED_TABLE (CORE) INCLUDE (DB,ACTIVE_VISITOR) | 45.52s PHOENIX-2.2.0-96-RUN1 |
|
LOAD DATA INDEXED_TABLE [2000000 ROWS] | 549.13s PHOENIX-2.2.0-96-RUN1 |
|
select count(1) from TABLE_6CF where K1 in ('A', 'B', 'C', 'D') | 1.93s PHOENIX-2.2.0-96-RUN1 |
| select count(1) from TABLE_6CF where K1 in ('A', 'C') | 1.72s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from TABLE_6CF where f < 1000 | 1.28s PHOENIX-2.2.0-96-RUN1 |
|
select a,b,c,d,e,f from TABLE_6CF where B>1000 and B<2000 and f>1000 and f<2000 | 1.22s PHOENIX-2.2.0-96-RUN1 |
|
select sum(a),sum(b),sum(c),sum(d) from TABLE_6CF group by K1 | 5.74s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from TABLE_6CF group by A | 2.17s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from TABLE_6CF group by B | 3.16s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from TABLE_6CF where f < 10000 | 2.58s PHOENIX-2.2.0-96-RUN1 |
|
LOAD DATA TABLE_6CF [2000000 ROWS] | 108.47s PHOENIX-2.2.0-96-RUN1 |
|
select count(1) from TABLE_1CF where K1 in ('A', 'B', 'C', 'D') | 2.2s PHOENIX-2.2.0-96-RUN1 |
| select count(1) from TABLE_1CF where K1 in ('A', 'C') | 1.97s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from TABLE_1CF where f < 1000 | 2.04s PHOENIX-2.2.0-96-RUN1 |
|
select a,b,c,d,e,f from TABLE_1CF where B>1000 and B<2000 and f>1000 and f<2000 | 2.22s PHOENIX-2.2.0-96-RUN1 |
|
select sum(a),sum(b),sum(c),sum(d) from TABLE_1CF group by K1 | 5.2s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from TABLE_1CF group by A | 2.38s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from TABLE_1CF group by B | 3.06s PHOENIX-2.2.0-96-RUN1 |
|
select count(*) from TABLE_1CF where f < 10000 | 2.71s PHOENIX-2.2.0-96-RUN1 |
|
LOAD DATA TABLE_1CF [2000000 ROWS] | 100.79s PHOENIX-2.2.0-96-RUN1 |
|