Redshift - How to remove NOT NULL constraint?

喜你入骨 提交于 2019-12-21 07:01:52

问题


Since Redshift does not support ALTER COLUMN, I would like to know if it's possible to remove the NOT NULL constraints from columns in Redshift.


回答1:


You cannot alter the table.

There is an alternative approach. You can create a new column with NULL constraint. Copy the values from your old column to this new column and then drop the old column.

Something like this:

ALTER TABLE table1 ADD COLUMN somecolumn (definition as per your reqm);
UPDATE table1 SET somecolumn = oldcolumn;
ALTER TABLE table1 DROP COLUMN oldcolumn;
ALTER TABLE table1 RENAME COLUMN somecolumn TO oldcolumn;



回答2:


There is no way to change column on Redshift.

I can suggest you to create new column, copy values from old to new column and drop old column.

ALTER TABLE Table1 ADD COLUMN new_column (___correct_column_definition___);
UPDATE Table1 SET new_column = column;
ALTER TABLE Table1 DROP COLUMN column;
ALTER TABLE Table1 RENAME COLUMN new_column TO column;



回答3:


The accepted answer can produce an error:

cannot drop table <table_name> column <column_name> because other objects depend on it

Adding CASCADE at the end of the DROP COLUMN statement will fix this. Just make sure another object doesn't depend on it first.

ALTER TABLE table1 ADD COLUMN newcolumn (definition as per your reqirements);
UPDATE table1 SET newcolumn = oldcolumn;
ALTER TABLE table1 DROP COLUMN oldcolumn CASCADE;
ALTER TABLE schema_name.table1 RENAME COLUMN newcolumn TO oldcolumn;

I found this information here, when the accepted answer wasn't working for me: https://forums.aws.amazon.com/message.jspa?messageID=463248

Also note: When I tried to rename the column, I got another error: relation does not exist

To fix that, I added the schema name in front of the table name in the RENAME COLUMN statement



来源:https://stackoverflow.com/questions/29536916/redshift-how-to-remove-not-null-constraint

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!