I'm relatively new to Oracle but I'm getting an error, ORA-00922, when I'm trying to execute the following statement:
CREATE TABLE RT_action_items (
action_itemID INT NOT NULL AUTO_INCREMENT,
reviewID varchar2(20) NOT NULL,
reviewer_username varchar2(50) NOT NULL,
dispositionID INT NOT NULL,
errorID INT NOT NULL,
action CLOB DEFAULT NULL,
presenter_implemented INT DEFAULT NULL,
date_implemented date DEFAULT NULL,
actioned_by varchar2(20) DEFAULT NULL,
presenter_response CLOB DEFAULT NULL,
PRIMARY KEY (action_itemID)
)
All help is greatly appreciated. I've checked to make sure CLOB doesn't need a default value, neither does INT obviously... Yeah I'm stumped.
Thanks in advance!