Re: Oracle to Postgres - Transform Hash Partition
От | Christoph Moench-Tegeder |
---|---|
Тема | Re: Oracle to Postgres - Transform Hash Partition |
Дата | |
Msg-id | ZmIC5LqJhqkaEnS-@sciurus.exwg.net обсуждение исходный текст |
Ответ на | Oracle to Postgres - Transform Hash Partition (David Barbour <dbarbour@istation.com>) |
Ответы |
Re: Oracle to Postgres - Transform Hash Partition
|
Список | pgsql-general |
## David Barbour (dbarbour@istation.com): > Now I need to 'attach' the original table. The problem I'm running into is > there are no good examples of how to define the values. The syntax is the same as with CREATE TABLE ... PARTITION OF, e.g. ALTER TABLE parent ATTACH TABLE part FOR VALUES WITH (MODULUS m, REMAINDER r); > Here's an example: > alter table idev.assessment_result_2023_dab_part > attach partition idev.assessment_result_2023_dab for values with(modulus 8, > remainder 1) to (modulus 8, remainder 7) There's only one (modulus, remainder) tuple in the partition bound definition for hash partitions, and always only one partition bound specification per partition. Maybe what you actually want is a DEFAULT partition (specified as PARTITION OF parent DEFAULT), or maybe a completely different approach? Regards, Christoph -- Spare Space.
В списке pgsql-general по дате отправления: