I have 7 different tables - all same in structure but each one has a check constraint for the day of the week. I have view over all 7 tables, which does a union all over 7 tables. The load process inserts into the "view" and the check constraint directs the data into the correct table as per the check constraint.
Can this be achieved by using one table that is partitioned 7 times so I can get rid of the view and the need for several tables ?