Scripting Question:

Explain how to fetch two values from database into two variables in shell scripting?

Tweet Share WhatsApp

Answer:

In order to get 1 value from DB and assign it to variable in shell script i use following syntax:

sqlplus /nolog << EOF | read xyz

SET LINESIZE 100
SET PAGESIZE 50
SELECT emp_sal
FROM emp
where emp_id=789;
EOF

hence, xyz variable gets emplyoee salary.

Download Scripting PDF Read All 9 Scripting Questions
Previous QuestionNext Question
Explain how to load .so (in linux), DLL in windows in PERL?Explain how to execute WScript & WSH object? How will i create WSH objects?