2026-03-12 20:23:15
This commit is contained in:
19
tpt/exadata/cell_scan_resulting_traffic.sql
Normal file
19
tpt/exadata/cell_scan_resulting_traffic.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
-- 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
|
||||
Reference in New Issue
Block a user