SQL Language Guide > SQL Language Guide > SQL Statements > CREATE TRANSIENT TABLE > Default Partition Count for Transient Tables
Was this helpful?
Default Partition Count for Transient Tables
You can assign a default number of partitions to be used when creating partitioned transient tables. Set the default value on the DBMS configuration parameter default_npartitions, and then specify WITH PARTITION = (rule ON column DEFAULT PARTITIONS) when creating or modifying transient tables. The transient table will be partitioned into the configured number of partitions. The default_npartitions parameter can be set to an integer between 0 and 923, inclusive.
The default is 0 (no default available); use partitioning guidelines to set default_npartitions.
The default partition count setting can be overridden at the session level using the SET PARTITION_PARTS statement.
Last modified date: 09/11/2026