*** Unrecognized command line argument 'Directory'.
*** Unrecognized command line argument 'Default;'.
Error: The process 'C:\Program Files\Microsoft SQL Server\160\Dac\bin\SqlPackage.exe' failed with exit code 1
It looks as though the code to invoke SqlPackage isn't correctly handling quotes in the connection string:
I worked around this by removing the quotes from the connection string (ie Authentication=Active Directory Default;) and that appears to work, but the action ought to be able to handle the quotes.
My action config looks like this:
I got the error message:
It looks as though the code to invoke
SqlPackage
isn't correctly handling quotes in the connection string:- note the closing quote after
Active
.I worked around this by removing the quotes from the connection string (ie
Authentication=Active Directory Default;
) and that appears to work, but the action ought to be able to handle the quotes.