Question: How do you resolve SQL server Error: Errors were encountered during the save process. Some database objects were not saved
Login to See the Rest of the Answer
Answer: There is a chance that you are trying to modify a table that has data in it, the data in the column might be varchar that can't be changed to the data type you are trying to modify the column to.
- If you are sure about the table and it is not in production, the solution is to truncate the table or the column that error has originated.
Login to Continue, We will bring you back to this content 0
Rita said:
Thank you,