Interviewer And Interviewee Guide

Scripting Interview Question:

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

Submitted by: Administrator
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.
Submitted by: Administrator

Read Online Scripting Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.