I had been getting the error when publishing a SQL project.
I was testing on a database made from the production schema with some test data.
When I looked at the error from the Data Tools Operations tab in Visual Studio, I saw this:
/*
The column [dbo].[MyTableName].[UnexpectedColumnName] is being dropped, data loss could occur.
*/
IF EXISTS (select top 1 1 from [dbo].[MyTableName])
RAISERROR (N'Rows were detected. The schema update is terminating because data loss might occur.', 16, 127) WITH NOWAIT
GO
However, the UnexpectedColumnName
column name has not been in that table for quite a long time.
The question was how why that SQL was being generated.
So it turns out the refactor log had something really old in it. I asked the publish step to generate the script rather than publish immediately and searched for
UnexpectedColumnName
:I then looked into the refactoring log and saw this matching the GUID:
Because we don't use those refactoring log features, I just deleted the whole refactoring log, and everything worked. I'd imagine you could also just delete the errant rename.