Files
oracle/tpt/exadata/cell_scan_resulting_traffic.sql

20 lines
507 B
MySQL
Raw Permalink Normal View History

2026-03-12 21:23:47 +01:00
-- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
DROP TABLE cell_traffic_test;
CREATE TABLE cell_traffic_test
PARALLEL 8
AS
SELECT 'TANEL_TEST' col, a.*, b.* FROM
(SELECT ROWNUM r FROM dual CONNECT BY LEVEL <= 100) a
, dba_objects b
ORDER BY
DBMS_RANDOM.VALUE
-- b.owner, b.object_type
/
@gts cell_traffic_test
ALTER TABLE cell_traffic_test NOPARALLEL;
CREATE TABLE