Reputation: 10672
I have .dacpac and want to publish the same with SQL package CLI. However there are some unwanted tables in the .dacpac or from the source database, which I don't want to be created in the targeted database. I tried using SQLPackage property IgnoreDefaultSchema https://learn.microsoft.com/en-us/sql/tools/sqlpackage/sqlpackage-extract?view=sql-server-ver16
But doesn't matter whether I set the value to true or false still it creates the table.
Here is a powershell script
SqlPackage /Action:Publish /SourceFile:$DacpacPath /TargetServerName:$DestinationServerName /TargetDatabaseName:$DestinationDatabaseName /p:IgnoreDefaultSchema=True
Is this kind of known issue? or is there any alternate solution.
Thanks in advance.
Upvotes: 0
Views: 35