create table test(
          tid varchar(22) not null primary key,
          pdate varchar(10))
  partition by range(to_date(pdate,'yyyy-mm-dd'))     <- 格式不对~
  (partition part200409 values less than (to_date('2004-10-01','yyyy-mm-dd'))
  tablespace system);应该是 partition by range("字段名")~