1
0
forked from docs/doc-exports
doc-exports/docs/dws/tool/dws_16_0143.html
Lu, Huayi 27019c2991 DWS TOOL 830.201 version
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: Lu, Huayi <luhuayi@huawei.com>
Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
2024-05-16 07:35:25 +00:00

32 lines
2.1 KiB
HTML

<a name="EN-US_TOPIC_0000001819416229"></a><a name="EN-US_TOPIC_0000001819416229"></a>
<h1 class="topictitle1">MIN_ROWS</h1>
<div id="body8662426"><p id="EN-US_TOPIC_0000001819416229__en-us_topic_0000001658024922_en-us_topic_0000001436175733_en-us_topic_0214164756_p579713312318"><strong id="EN-US_TOPIC_0000001819416229__en-us_topic_0000001658024922_en-us_topic_0000001436175733_b187395700332425">MIN_ROWS</strong> indicates the minimum number of rows that can be stored in a table. This attribute will be deleted during migration using DSC.</p>
<p id="EN-US_TOPIC_0000001819416229__en-us_topic_0000001658024922_en-us_topic_0000001436175733_en-us_topic_0214164756_p1089814579418"><strong id="EN-US_TOPIC_0000001819416229__en-us_topic_0000001658024922_en-us_topic_0000001436175733_en-us_topic_0214164756_b12819113205517">Input</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001819416229__en-us_topic_0000001658024922_en-us_topic_0000001436175733_en-us_topic_0214164756_screen171131075472">CREATE TABLE `public`.`runoob_alter_test`(
`dataType1` int NOT NULL AUTO_INCREMENT,
`dataType2` DOUBLE(20,8),
`dataType3` TEXT NOT NULL,
PRIMARY KEY(`dataType1`)
);
ALTER TABLE runoob_alter_test MIN_ROWS 10000;
ALTER TABLE runoob_alter_test MIN_ROWS=10000;</pre>
<p id="EN-US_TOPIC_0000001819416229__en-us_topic_0000001658024922_en-us_topic_0000001436175733_en-us_topic_0214164756_p12114173518210"><strong id="EN-US_TOPIC_0000001819416229__en-us_topic_0000001658024922_en-us_topic_0000001436175733_en-us_topic_0214164756_b690673517557">Output</strong></p>
<pre class="screen" id="EN-US_TOPIC_0000001819416229__en-us_topic_0000001658024922_en-us_topic_0000001436175733_en-us_topic_0214164756_screen74081720185019">CREATE TABLE "public"."runoob_alter_test"
(
"datatype1" SERIAL NOT NULL,
"datatype2" DOUBLE PRECISION,
"datatype3" TEXT NOT NULL,
PRIMARY KEY ("datatype1")
)
WITH ( ORIENTATION = ROW, COMPRESSION = NO )
NOCOMPRESS
DISTRIBUTE BY HASH ("datatype1");</pre>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="dws_16_0119.html">Table (Optional Parameters and Operations)</a></div>
</div>
</div>