I need to automate a SQL script against an Oracle database using a Bamboo build via PowerShell inline commands. The credentials are not to be displayed in the inline script but managed via variables.
My code looks like this
$user = "<username>"
$password = "<password>"
$tnsalias = "<TNS_ALIAS>"
$SqlQuery = "@C:\Test.sql"
$bambooExecutionLog = "C:\Test.log"
#
C:\sqlplus $bambooUser/$bambooPassword@$tnsalias $SqlQuery
However, it fails with the following error message
ORA-01017: invalid username/password; logon denied
Any help/suggestions would be appreciated.
I managed to resolve the issue myself :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.