unix-oracle


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting unix-oracle
# 1  
Old 02-11-2008
unix-oracle

Hallo Friends,

My script looks like this:

#!/bin/ksh
set -x
#########################################################################
#
# Name:
# statistics.ksh
#
# Details:
# Performs a series of queries on the database to analyse application performance;
# reports on backlog of data files. Produces a report for e-mailing to recipients.
# Crontab (non-interactive) invocation.
#
# Usage:
# To compile a number of statistics for MTN and for the SP's
#
########################################################################
# Author:
# Paxley Kekana
#
# Revision History:
# Date Author Details
# 300108 PK First version
# 300108 PK Added ORACLE_SERVER_SID to accomodate SID and
# alias differences
#########################################################################


# Set the ORACLE_SID to ORACLE_SERVER_SID and run script
export ORACLE_SID_BACKUP=${ORACLE_SID}
export ORACLE_SID=${ORACLE_SERVER_SID}


#Scripts are starting to run#
cd /minotaur/Scripts/stats


/usr/bin/cat <<EOF | $ORACLE_HOME/bin/sqlplus -s /@${ORACLE_SID}



@analyst_report.sql
@analyst_report_archived.sql
exit
EOF
###################END################

When i run this script via cron i get the output below from sys mail:

$ mail
Mail [5.2 UCB] [AIX 5.X] Type ? for help.
"/var/spool/mail/minotaur": 1 message 1 new
>N 1 daemon Mon Feb 11 13:44 36/1148 "Output from cron job /mino"
? 1
Message 1:
From daemon Mon Feb 11 13:44:00 2008
Date: Mon, 11 Feb 2008 13:44:00 +0200
From: daemon
To: minotaur
Subject: Output from cron job /minotaur/Scripts/stats/mtn_statistics.ksh, minotaur@mtnx55, exit status 0

Cron Environment:
SHELL =
PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin
CRONDIR=/var/spool/cron/crontabs
ATDIR=/var/spool/cron/atjobs
LOGNAME=minotaur
HOME=/home/minotaur

Your "cron" job executed on mtnx55 on Mon Feb 11 13:44:00 USAST 200
/minotaur/Scripts/stats/mtn_statistics.ksh


produced the following output:

+ export ORACLE_SID_BACKUP=
+ export ORACLE_SID=
+ cd /minotaur/Scripts/stats
+ /bin/sqlplus -s /@
+ /usr/bin/cat
+ 0< /tmp/sh1384776.2
/minotaur/Scripts/stats/mtn_statistics.ksh[37]: /bin/sqlplus: not found.
+ cd ../../Log/stats


*****************************************************************
cron: The previous message is the standard output
and standard error of one of the cron commands.

? q
Saved 1 message in /home/minotaur/mbox
$
########END####################################

Can you guys please help me solve these error?

Ta,
# 2  
Old 02-11-2008
unix-oracle

Hallo guys,

This is important please.
# 3  
Old 02-11-2008
Edit: you need to set the ORACLE_HOME variable before executing the script ...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

Oracle/UNIX

How do you combine the two language. (1 Reply)
Discussion started by: zbest1966
1 Replies

2. UNIX for Advanced & Expert Users

oracle to unix

how can i safely transfer a oracle database to a unix system thanks (1 Reply)
Discussion started by: djbilly
1 Replies

3. UNIX for Dummies Questions & Answers

unix for oracle

Hi unixers, :) Anyone have any links or online tutorials for Shell Scripting with respect to Oracle . Any example of script calling any Oracle procedure or function or passing parameters is highly appreciated. (6 Replies)
Discussion started by: ravi raj kumar
6 Replies

4. Shell Programming and Scripting

Unix Oracle

Through a shell script ... I am invoking sql plus.. Code is as follows... echo " set feedback off verify off pagesize 0 select column from table " | sqlplus -s/@dbname | read var_col Now if oracle throws an exception for above select statement ...then how can i catch it ?... (15 Replies)
Discussion started by: dhananjaysk
15 Replies

5. Shell Programming and Scripting

Unix + Oracle

Hello people, at the moment, I have a database server running HP-UX and Oracle. From time to time, I need to extract data from oracle, and then do some data management (Awk, sed) within unix. At the moment, what I do is to copy the output from my oracle query and then paste into a file on another... (1 Reply)
Discussion started by: Khoomfire
1 Replies

6. HP-UX

Restore of oracle 8i from hp unix 11.0 to HP unix 11i

Hi, We are planning to migrate oracle 8.1.7.2 (8i) currently installed on a host with HP unix 11.0 to a host with HP Unix 11i. The method we are adopting is backup and restore of all file systems. Could this be a problem, apart from linking libraries on the target system. Thanks for the... (1 Reply)
Discussion started by: amitb
1 Replies

7. UNIX for Dummies Questions & Answers

Oracle to MySQL through Unix

Hello All, I'm a complete Unix newbie, and I have been asked to provide a solution for the following opportunity: Currently there is an Oracle database residing on a Unix box that I need to connect to on a regular basis from another Unix box. Upon connecting I need to hit multiple tables and... (6 Replies)
Discussion started by: Z24_2000
6 Replies

8. UNIX for Advanced & Expert Users

Oracle and Unix

Hi I am having trouble with a script to export individual schemas to tape from an oracle database. Basicaly I need to export each shema through a pipe with compression and store each shema name in a file with the relevant tape marker. (3 Replies)
Discussion started by: truma1
3 Replies

9. Programming

Oracle 9i on Unix

i am upgrading my Oracle 8i database to 9i that runs on Unix platform. Does this require me to make any changes in Unix so as to run the upgrade successfully? Regards, Gerald. (2 Replies)
Discussion started by: gerald_agoi
2 Replies
Login or Register to Ask a Question