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?
Comments
Post a Comment