everyone!
I want to know what this line does:
sqlplus -s /nolog <<EOF
Any ideas?
Thanks for the help!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From the information that you provided in the comments:
Fires up an instance of
sqlpluswith silent mode enabled (which, I believe, doesn’t send out any output to the console screen), and without a login explicitly provided (hence the/nolog), and it’s taking input from the string contained in theEOFheredoc (which probably contains login credentials).Here is a quick overview of Oracle’s documentation on
sqlplus.