Final answer:
To define a sequence named SEQ_ACTOR_ID starting at 1001, incrementing by 1, with no maximum value, the SQL statement CREATE SEQUENCE SEQ_ACTOR_ID START WITH 1001 INCREMENT BY 1 NO MAXVALUE; is used.
Step-by-step explanation:
To create a sequence in SQL that begins at 1001 and increments by 1 without a maximum value, you use the following SQL statement:
CREATE SEQUENCE SEQ_ACTOR_ID
START WITH 1001
INCREMENT BY 1
NO MAXVALUE;
This statement defines a sequence named
SEQ_ACTOR_ID, which will generate numbers starting from 1001 and increment each new number by 1. Since there is no maximum value specified, the sequence will continue to generate values indefinitely, or until the limit of the data type is reached.