ORACLE单表数据过大,以前该表只有一个表空间.现想改为设5个表空间,当第一个空间数据量到3千万条时切换到第二个表空间.然后依次往下.---------------我想问重新规划表空间对以前的数据是否会有影响?SQL> create table dinya_test 
2 ( 
3 transaction_id number primary key, 
4 item_id number(8) not null, 
5 item_description varchar2(300), 
6 transaction_date date not null 
7 ) 
8 partition by range (transaction_id) 
9 ( 
10 partition part_01 values less than(30000000) tablespace dinya_space01, 
11 partition part_02 values less than(60000000) tablespace dinya_space02, 
12 partition part_03 values less than(maxvalue) tablespace dinya_space03 
13 ); 
Table created.    建表成功,根据交易的序号,交易ID在三千万以下的记录将存储在第一个表空间dinya_space01中,分区名为:par_01,在三千万到六千万之间的记录存储在第二个表空间:  dinya_space02中,分区名为:par_02,而交易ID在六千万以上的记录存储在第三个表空间dinya_space03中,分区名为par_03.