12:31:47 SQL> SET PAGESIZE 100
12:31:47 SQL>
12:31:47 SQL> alter table &base_table add partition &partition_prefix.P100
12:31:47   2  /
old   1: alter table &base_table add partition &partition_prefix.P100
new   1: alter table po_tab add partition PART1_P100
alter table po_tab add partition PART1_P100
            *
ERROR at line 1:
ORA-14501: object is not partitioned
Elapsed: 00:00:00.03
12:31:47 SQL>
12:31:47 SQL> alter table &base_table add partition &partition_prefix.P101
12:31:47   2  /
old   1: alter table &base_table add partition &partition_prefix.P101
new   1: alter table po_tab add partition PART1_P101
alter table po_tab add partition PART1_P101
            *
ERROR at line 1:
ORA-14501: object is not partitioned
请问为何不能对表po_tab
进行分区呢?
谢谢