如题,最近刚接触DB2数据库,在建表的时候用到如下语句:
partition by RANGE (DAY)
(STARTING MINVALUE,
partition D_1 STARTING '0101' ENDING '0131',
partition D_2 STARTING '0201' ENDING '0228',
....
ENDING MAXVALUE
)
结果报错:
DB2 Database Error: ERROR [] [IBM][DB2/LINUXX8664] SQL8027N The table partitioning feature is being used without a DB2 Enterprise Server Edition license. DB2 has detected that the table partitioning feature is being used without a DB2 Enterprise Server Edition license. Ensure that you have purchased a valid DB2 Enterprise Server Edition entitlement from your IBM representative or authorized dealer and have updated your license using the DB2 License Center or the db2licm command line utility.
急求大神指导啊!!!