Hi
I'm running the below command using powershell script:
$sqlpackagereport = Start-Process -FilePath sqlpackage.exe -ArgumentList '/Action:DeployReport','/SourceFile:"Database Services\bin\Release\Database Services.dacpac"',"/TargetServerName:${Env}","/TargetDatabaseName:${Target}","/OutputPath:Report.xml" -wait -PassThru -Credential $Cred
$sqlpackagereport.WaitForExit()
$sqlpackagereport
but when I'm trying to open Report.xml in the server, I get this exception:
This XML file does not appear to have any style information associated with it. The document tree is shown below.
<DeploymentReport xmlns="http://schemas.microsoft.com/sqlserver/dac/DeployReport/2012/02">
<Alerts/>
...
</DeploymentReport>
