column attributes and data will be lost on commit Explanation: You used the ALTER statement to change a column into a computed column. Because of the way this is implemented, all attributes and data existing before the ALTER statement will be lost when you issue a COMMIT statement. User Action: If this behavior is unexpected, use the ROLLBACK statement to undo the effects of the ALTER statement.