ADS Version:ADS-15.0.7-31
Connect Teradata-15.0
//Create table
CREATE SET TABLE "Test_table" ,
FALLBACK,
LOG,
NO BEFORE JOURNAL,
DUAL AFTER JOURNAL,
WITH JOURNAL TABLE = "sqlscript"."journals",
FREESPACE = 20 PERCENT,
MERGEBLOCKRATIO = 1 PERCENT,
DATABLOCKSIZE = 21504 BYTES,
BLOCKCOMPRESSION = MANUAL,
CHECKSUM = DEFAULT (
"col1" VARCHAR(25) CHARACTER SET LATIN,
"col2" VARCHAR(25) CHARACTER SET LATIN,
"col3" VARCHAR(25) CHARACTER SET LATIN
)
GO
Go to right click on table ->tools->ER modeler generator
check tables from object type
Check table "dbo"."Test_table" from object.
Check
click on next button.
Entity relationship diagram open
Now go to this window->right click on table->select table properties->switch to storage tab.
Now you will observe that,Free space,Merge Block Ratio,Data Lock Size,Block Compression properties are not reflected in storage tab of ER- Modeler.
Fixed with 12600