Ora2Pg is a free tool used to migrate an Oracle database to a PostgreSQL compatible schema. It connects your Oracle database, scan it automatically and extracts its structure or data, it then generates SQL scripts that you can load into PostgreSQL.
Getting this error Unknown partitioning type KEY, skipping partitioning of table while exporting tables and partitions for a table that is key partitioned.
These are DDLs to create the same on MySQL DB
CREATE TABLE key_partition_test (
a INT,
b INT primary key,
c INT
)
PARTITION BY key()
partitions 2;
INSERT INTO key_partition_test VALUES (5,6,1),(3,4,6), (5,11,1), (5,1,2),(5,5,5);
Is there some plan to start supporting KEY partitioning anytime soon in the future?
cc @darold
Getting this error
Unknown partitioning type KEY, skipping partitioning of table
while exporting tables and partitions for a table that is key partitioned.These are DDLs to create the same on MySQL DB
Is there some plan to start supporting KEY partitioning anytime soon in the future? cc @darold