Example: Specifying MERGEBLOCKRATIO Settings - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
ft:locale
en-US
ft:lastEdition
2024-12-11
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

For Object File System tables, MERGEBLOCKRATIO has a default setting that you cannot change.

This example sets the value of the merge block ratio for emp_table to 25%.

CREATE TABLE emp_table, MERGEBLOCKRATIO=25 PERCENT (
emp_no INTEGER);

This example defines emp_table in a way that disables all data block merges.

CREATE TABLE emp_table, NO MERGEBLOCKRATIO (
emp_no INTEGER);