Let $userid = "Bob"
and $password = "Alice
“, $connectionString = "string"
be objects of powershell.
I wanna excute the following code by using $userid
,$password
and $connectionString
I wanna excute the code
sqlldr Bob/Alice@serviceName control = somefile.ctrl
by something like the following manner
sqlldr $userid /$password @ $connectionString control = somefile.ctrl
My attempts are the following but it does not work.
$password@$connectionString |sqlldr control = somefile.ctrl userid = $userid
sqlldr control = somefile.ctrl userid = $userid $password + "@" + $connectionString
‘
pc pc is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.