Create Index
In this section, you will find information about the transformation done to the Create Index in Oracle.
Currently, Create Index statement is not being converted but it is being parsed. Also, if your source code has create index
statements, these are going to be accounted for in the Assessment Report.
Example of a create index parsed code:
Due to architectural reasons, Snowflake does not support indexes so, SnowConvert will remove all the code related to the creation of indexes. Snowflake automatically creates micro-partitions for every table that help speed up the performance of DML operations, the user does not have to worry about creating or managing these micro-partitions.
Usually, this is enough to have an exceptionally good query performance. However, there are ways to improve it by creating data clustering keys. Snowflake's official page provides more information about micro-partitions and data clustering.
Last updated