RE: Why isn't my script running?

  • From: "Mercadante, Thomas F (LABOR)" <Thomas.Mercadante@xxxxxxxxxxxxxxxxx>
  • To: <eugene.pipko@xxxxxxxxxxxx>
  • Date: Wed, 25 Feb 2009 11:47:32 -0500

Eugene,

Your cron says:
00 01 * * 7 /home/oraprd/scripts/test_schema_stats.sh

You run it from the command line as:
$sh test_schema_stats.sh

There is a difference there.  Have you set the executable bit on the file?

chmod +x test_schema_stats.sh

And you are absolutely sure that it exists in the named directory.

One other option:  Your cron entry could be:

00 01 * * 7 sh /home/oraprd/scripts/test_schema_stats.sh

I do not prefer to run it this way as I use korn shell for all my scripting.

Hope this helps.

Tom

-----Original Message-----
From: oracle-l-bounce@xxxxxxxxxxxxx [mailto:oracle-l-bounce@xxxxxxxxxxxxx] On 
Behalf Of Eugene Pipko
Sent: Wednesday, February 25, 2009 11:09 AM
To: 'z b'
Cc: 'oracle-l@xxxxxxxxxxxxx'
Subject: RE: Why isn't my script running?

Thanks everyone for your replies.

Yes, I could use dbms_job, but I am trying to learn to use cron.

I've implemented all the suggestions, but ... the script still wouldn't fire 
from cron.
It runs just fine if I do: $sh test_schema_stats.sh.
I will spend some more time trying to figure it out.

Eugene Pipko
  Please consider the environment before printing this e-mail.

-----Original Message-----
From: z b [mailto:zimsbait@xxxxxxxxx] 
Sent: Tuesday, February 24, 2009 6:32 PM
To: Eugene Pipko
Cc: oracle-l@xxxxxxxxxxxxx
Subject: Re: Why isn't my script running?

If this is the actual script, why not use dbms_job (< 10g) or
dbms_scheduler (> 10g)?

On Tue, Feb 24, 2009 at 1:15 PM, Eugene Pipko <eugene.pipko@xxxxxxxxxxxx> wrote:
> Hi all,
>
> I am new to shell. I need to calculate stats for a schema using cron (oracle
> linux 4).
>
> For some reason my script is not running.
>
> --------------------------------------
>
> #!/bin/ksh
>
> USER=SYSTEM
>
> PASSWORD=pwd
>
> sqlplus -s $USER/$PASSWORD <<EOF
>
> set feed off
>
> set head off
>
> set pagesize 0
>
> exec
> dbms_stats.gather_schema_stats('TEST',ESTIMATE_PERCENT=>30,CASCADE=>TRUE);
>
> /
>
> exit 0;
>
> EOF
>
> -------------------
>
>
>
> Then in Linux:
>
> 00 01 * * 7 /home/oraprd/scripts/test_schema_stats.sh 1&2 >>
> /home/oraprd/scripts/logs/test_schema_stats.log
>
>
>
> Thanks,
>
> Eugene Pipko
>
> P  Please consider the environment before printing this e-mail.
>
>
i0zX+n{+i^

Other related posts: