We are using SSDT project in visual studio to manage my SqlServer deployments.
We create dacpac file and send it to our clients.
Then they update their DB using "Sql Server > Task > Upgrade Data-tier Application" option.
While doing this, we found it drop all the User which is not in dacpac but present in SqlServer DB. (though users are not droping - if we use SqlPackage.exe command line tool)
To prevent this DROP, we implement "Drop, Ignore & Exclude" setting in Advance Deployment Settings in SSDT project of Visual Studio. But this seems not working.
Is I missing something?
How do i prevent USER from Drop?
SQL Server Version:
Microsoft SQL Server Management Studio 12.0.4213.0
Microsoft Data Access Components (MDAC) 6.3.9600.17415
Microsoft .NET Framework 4.0.30319.42000
Operating System 6.3.9600

