Using sp_repladdcolumn
I can either:
1) add a column that allows nulls; or
2) add a column with a default value that does not allow nulls.
Without dropping and recreating the whole subscription I would like to:
3) add a column with no default value that does not allow nulls.
Is this possible?
I realize I would need to populate the column with data before I could set it to NOT NULL. As the title indicates, what I really want to do is rename an existing column that: a) has data in it, b) is set to NOT NULL, and c) has no default value.