0% found this document useful (0 votes)
99 views

Table Placement Erp

This document contains configuration parameter settings and table placement updates. The configuration parameters configure table placement strategy and table redistribution balancing. Three tables are configured for initial partitioning and repartitioning thresholds on different server locations.

Uploaded by

puneethkb
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
99 views

Table Placement Erp

This document contains configuration parameter settings and table placement updates. The configuration parameters configure table placement strategy and table redistribution balancing. Three tables are configured for initial partitioning and repartitioning thresholds on different server locations.

Uploaded by

puneethkb
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

--[BEGIN HEADER]

-- VERSION 1
-- This is version 1 of the parameter file
--[END HEADER]
ALTER SYSTEM ALTER CONFIGURATION ('global.ini','SYSTEM') SET ('table_placement',
'same_num_partitions') = 'true' WITH RECONFIGURE;
ALTER SYSTEM ALTER CONFIGURATION ('global.ini','SYSTEM') SET ('table_placement',
'method') = '2' WITH RECONFIGURE;
ALTER SYSTEM ALTER CONFIGURATION ('indexserver.ini','SYSTEM') SET('table_redist'
,'balance_by_execution_time')='true' WITH RECONFIGURE;
ALTER SYSTEM ALTER CONFIGURATION ('indexserver.ini','SYSTEM') SET('table_redist'
,'balance_by_execution_time_weight')='1' WITH RECONFIGURE;
ALTER SYSTEM ALTER CONFIGURATION ('indexserver.ini','SYSTEM') SET('table_redist'
,'balance_by_execution_count')='true' WITH RECONFIGURE;
ALTER SYSTEM ALTER CONFIGURATION ('indexserver.ini','SYSTEM') SET('table_redist'
,'balance_by_execution_count_weight')='1' WITH RECONFIGURE;
UPSERT "_SYS_RT"."TABLE_PLACEMENT" (SCHEMA_NAME,TABLE_NAME,GROUP_NAME,GROUP_TYPE
,SUBTYPE,MIN_ROWS_FOR_PARTITIONING,INITAL_PARTITIONS,REPARTITIONING_THRESHOLD,LO
CATION)
VALUES('','','','','',2000000000,3,2000000000,'slave') WHERE GROUP_NAME = '' AND
SCHEMA_NAME = '' AND TABLE_NAME = '' AND GROUP_TYPE= '' AND SUBTYPE = '';
UPSERT "_SYS_RT"."TABLE_PLACEMENT" (SCHEMA_NAME,TABLE_NAME,GROUP_NAME,GROUP_TYPE
,SUBTYPE,MIN_ROWS_FOR_PARTITIONING,INITAL_PARTITIONS,REPARTITIONING_THRESHOLD,LO
CATION)
VALUES('SAPJ8J','','','','',2000000000,2,2000000000,'all#1') WHERE GROUP_NAME =
'' AND SCHEMA_NAME = 'SAPJ8J' AND TABLE_NAME = '' AND GROUP_TYPE= '' AND SUBTYPE
= '';
UPSERT "_SYS_RT"."TABLE_PLACEMENT" (SCHEMA_NAME,TABLE_NAME,GROUP_NAME,GROUP_TYPE
,SUBTYPE,MIN_ROWS_FOR_PARTITIONING,INITAL_PARTITIONS,REPARTITIONING_THRESHOLD,LO
CATION)
VALUES('SAPJ8J','','','sap.join','',2000000000,2,2000000000,'all#1') WHERE GROUP
_NAME = '' AND SCHEMA_NAME = 'SAPJ8J' AND TABLE_NAME = '' AND GROUP_TYPE= 'sap.j
oin' AND SUBTYPE = '';

You might also like