Exam 1z0-071 All QuestionsBrowse all questions from this exam
Question 57

Which three actions can you perform on an existing table containing data? (Choose three.)

    Correct Answer: A, E, F

    You can increase the width of a numeric column because this action does not affect the existing data in the column. Changing the default value of a column is also possible and will affect any new rows inserted after the change. Adding a new NOT NULL column with a DEFAULT value is permitted because the new column will use the specified default value for all existing rows, ensuring that the NOT NULL constraint is satisfied.

Discussion
shotcomOptions: AEF

AEF B is wrong an additional column will appear at the end C is wrong default value will affect rows that will be inserted after creating default constraint

yaya32Options: AEF

AEF for me

ArslanAltafOptions: AEF

AEF is 100% correct.

yanoolthecoolOptions: ADE

why not ADE? will E work? when we add a new column with default value, will it use that default value automatically for all the existing rows? im not sure, I know that it will do so for new ones though. as for D, shouldnt it be possible? as dates are stored as numeric value in the DB from what I know..