I am importing from the GUI a CSV file into a table. I have created the following table:
CREATE TABLE jira_tickets.daqa_rpt_tbl
(
daqa_report_id bigint NOT NULL DEFAULT 'jira_tickets.daqa_id_seq'::regclass,
project_name character varying(250) NOT NULL,
jira_key character varying(250) NOT NULL,
jira_summary text NOT NULL,
issue_type character varying(100) NOT NULL,
jira_status character varying(100) NOT NULL,
jira_resolution character varying(250),
jira_assignee character varying(250) NOT NULL,
jira_reporter character varying(250) NOT NULL,
jira_created text,
jira_last_viewed text,
jira_updated text,
jira_resolved text,
last_updated timestamp without time zone DEFAULT now(),
CONSTRAINT "daqa_report_id_PK" PRIMARY KEY (daqa_report_id)
);
When I import I get this error. Clearly the sequence is not incrementing when I move to the next row. Here is how I declare the sequence:
CREATE SEQUENCE jira_tickets.daqa_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 1000000000000000000
START 1
CACHE 1;
ALTER TABLE jira_tickets.daqa_id_seq
OWNER TO postgres;
GRANT ALL ON TABLE jira_tickets.daqa_id_seq TO public;
GRANT ALL ON TABLE jira_tickets.daqa_id_seq TO postgres;
Any suggestions or trouble shooting would be greatly appreciated.