have following sql, got error in last line, ERROR: sequence must have same owner as table it is linked to [Failed SQL: (0) ALTER SEQUENCE test_table_seq OWNED BY test_table.id
CREATE SEQUENCE test_table_seq;
ALTER TABLE test_table ALTER COLUMN id SET DEFAULT nextval('test_table_seq');
ALTER TABLE test_table ALTER COLUMN id SET NOT NULL;
ALTER SEQUENCE test_table_seq OWNED BY test_table.id;
Any suggestions how to avoid that error? thanks!!!!
Citation:
So, the first step: get to know the source table owner. As always there are several ways. The most common:
psql
:where the
<name>
value is your targetAgain,
<name>
is your target.Note that the schema is not specified here as a condition. If your table is in the schema different then
public
then it could be more complicated a bit.Finally, having the sequence already exists:
where the
<name>
is the value from one of the previous step.For now your sequence satisfies the condition mentioned above and you able to associate it with the table.column