Teradata 15: Failure 7545 Identity Column is over its limit
问题 I got this Teradata failure 7545 Identity Column is over its limit, but I am only insert a few hundreds records and i have already change data type from INT to BIGINT. Here is my create table syntax, I am really puzzled why Teradata was not happy? CREATE TABLE LOCATION ( LOCATION_ID BIGINT GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1 MAXVALUE 1000000) , .... Any insight would be greatly appreciated 回答1: Your definition defaults to NO CYCLE and MAXVALUE is set to 1000000 , so