sqlplus access and email access using shell script.. - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T23:04:33Zhttp://stackoverflow.com/feeds/question/327777http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327777/sqlplus-access-and-email-access-using-shell-script1sqlplus access and email access using shell script..Satya2008-11-29T18:04:18Z2009-10-28T15:14:12Z
<p>I am fairly beginner level at shell scripts and following are the details..</p>
<p>Am looking for the best way to fire sql queries and and carry out some logic based on that data. I've used the following snippet..</p>
<p>shellvariable=<code>sqlplus $user/$passwd <<END
select count(1) from table1;
end
EOF</code></p>
<p>if[$shellvariable -ne 0] then
<>
fi</p>
<p>Is there a better way to carry out the same..</p>
http://stackoverflow.com/questions/327777/sqlplus-access-and-email-access-using-shell-script/328617#3286174Answer by tardate for sqlplus access and email access using shell script..tardate2008-11-30T07:57:18Z2008-11-30T07:57:18Z<p>hi @Satya, you're on the right track. sqlplus is the best way to interact with the database when you are shell scripting, but two things to note:</p>
<ol>
<li>use the "-S" parameter to stop
sqlplus from printing all its
application info </li>
<li>to read data directly into a variable, you will
need some sqlplus environment
settings to prune back the output to
just what you want</li>
</ol>
<p>For any DBA's who are learning shell scripting to help them manage and automate Oracle database administration, I would highly recommend Jon Emmons' book <a href="http://pratalife.blogspot.com/2008/11/oracle-shell-scripting.html" rel="nofollow">Oracle Shell Scripting</a>. It teaches a great shell scripting intro course, but in the context of tasks that are really useful and interesting to DBAs.</p>
<p>One final note: if you are doing anything any more than a simple DBA task, I would recommend not using shell scripts, but use a scripting language that has proper database support. Perl is a good option for Oracle, since it is installed with the database.</p>
<p><a href="http://tardate.blogspot.com/2007/04/find-and-tail-oracle-alert-log.html" rel="nofollow">Here's an example</a> of a script for Oracle done in both bash and perl. From the shell version, here's how it reads a specific value to a shell variable: </p>
<pre><code>alertlog=$(sqlplus -S \/ as sysdba 2> /dev/null <<EOF
SET NEWPAGE 0
SET SPACE 0
SET LINESIZE 80
SET PAGESIZE 0
SET ECHO OFF
SET FEEDBACK OFF
SET VERIFY OFF
SET HEADING OFF
SELECT value
FROM v\$parameter
WHERE name = 'background_dump_dest';
EOF
)
</code></pre>
http://stackoverflow.com/questions/327777/sqlplus-access-and-email-access-using-shell-script/1356371#13563710Answer by scripter for sqlplus access and email access using shell script..scripter2009-08-31T08:11:07Z2009-08-31T08:11:07Z<p><a href="http://scripterworld.blogspot.com/2009/08/connecting-to-oracle-database-from-unix.html" rel="nofollow">Accessing database through shell scripting</a></p>