Partitioned By
Create table option
Description
Sample Source
Hive
CREATE TABLE table1(
transaction_id INT,
transaction_date DATE
)
PARTITION BY transaction_date;Snowflake
CREATE TABLE table1(
transaction_id INT,
transaction_date DATE
)
----** MSC-WARNING - MSC-HVXXXX - MICRO-PARTITIONING IS AUTOMATICALLY PERFORMED ON ALL SNOWFLAKE TABLES. **
--PARTITION BY transaction_date
;Known Issues
Related EWIs
Last updated
Was this helpful?