2008-04-07 18:30:36 / Oracle入门与认证
刚接触oracle,有个分区的问题create table LOG_TEST(DATETIMEDATEnot null,)partition by range( DATETIME )(partitionP1values less than ( trunc(sysdate,'mm') )tablespace LOG_M1,partitionP2values less than (MAXVALUE)tablespace LOG_M2);报错:ORA-14019: partition bound element must be one of: string, datetime or interval literal, number, or MAXVALUE如果我想每次运行sql脚本的时
查看(498)
评论(1)