Hello!

I have a SQL SQLPLUS script that needs to run on a Windows 2008R2 server.

I have coded the script commands in script.sql

I call script.sql using sqlplus /nolog @c:\scripts\script.sql

How do I protect the password for the account so that the password is not in clear txt in the script.

I don't want to have in the script

connect user@host/PASSWORD

How are other people out there protecting the password so it can't be seen clear txt in the script?

Thanks!