what feature to use in oracle standard edition like that of partitioning in oracle enterprise edition

前端 未结 3 753
[愿得一人]
[愿得一人] 2021-01-23 21:31

I only have access to oracle standard edition, which feature of oracle standard edition provides the functionality like that of partitioning is there any concept of logically me

3条回答
  •  无人及你
    2021-01-23 21:56

    Only thing that comes to mind is to have a real table for each 'partition', and then a view than unions them all together. But you'd have to rebuild the view every time you added or removed a 'partition', and there might be performance issues, as well as potential complication with anything except selects - which you could get around with procedures to do insert/update/delete on the relevant underlying table. Probably wouldn't be very easy to create or maintain, or very robust. There's a reason Oracle charge extra for this.

提交回复
热议问题