sql server - ssdt dacpac: how to prevent dacpac to generate the error when dropping columns in a table with data -


i dropping column in table xxx data. dacpac generating checking follow.

if exists (select top 1 1 [dbo].[xxx])     raiserror (n'rows detected. schema update terminating because data loss might occur.', 16, 127) nowait 

all data migration has been done in pre-deployment script. have comment out manually.

how prevent auto generating?

uncheck block incremental deployment if data loss might occurred in vs\publish\advanced\general.

enter image description here


Comments

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -