Example: SHOW TABLE for a Table Created without Specifying a MERGEBLOCKRATIO Option - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
Language
English (United States)
Last Update
2024-04-03
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905

If you do not specify the MERGEBLOCKRATIO option when you create a table, Vantage returns the SQL create text for the table as if you had specified the DEFAULT MERGEBLOCKRATIO option.

For example, suppose you create a table named emp_table, but do not specify the MERGEBLOCKRATIO option. Then, you submit a SHOW TABLE request for emp_table.

     SHOW TABLE emp_table;

The SHOW TABLE output is as follows (emp_table is on the Block File System).

     CREATE SET TABLE emp_table, NO FALLBACK, NO BEFORE JOURNAL,
           NO AFTER JOURNAL,CHECKSUM = DEFAULT, DEFAULTMERGEBLOCKRATIO, 
           MAP = TD_MAP1 
           ( emp_no INTEGER )
     PRIMARY INDEX ( emp_no );