crontab command not working


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users crontab command not working
# 1  
Old 11-12-2003
crontab command not working

Dear Friends,

I have tried to fire a job on daily basis through crontab command but it willn't work.
i have given in the following manner:
07 19 * * * exp /user_name/passwd/ file = /path/file-name full = N owner = user-name

but it is giving error that permission denied.
i have checked that the user is a member of group but still it is giving this error.
Anybody can give me a solution. please..
-Digant
# 2  
Old 11-12-2003
Hi Digant,

Whether last argument is file? whether it has got many command line arguments? if yes plz specify it within quotes ( the sixth argument , starts from 3 *s)

I need some more inputs about this.


I'm on line u can ask me now
Thanks
Vasanth
# 3  
Old 11-12-2003
Perhaps it should be username/password without the extra "/". More help is available if you do: exp HELP=Y
# 4  
Old 12-01-2003
Hi Digant

pl check your command

exp /user_name/passwd/ file = /path/file-name full = N owner = user-name

is working on $ prompt

I consider that u are running exp of Oracle

I think also you need to set some env veriables.
# 5  
Old 12-04-2003
Hammer & Screwdriver

Dear Dilip Patel,
yes, this is working on promt but it is not working while given by crontab command.Please if possible, give me solution. thanks in advance.
-Digant Dave
Quote:
Originally posted by Dilippatel
Hi Digant

pl check your command

exp /user_name/passwd/ file = /path/file-name full = N owner = user-name

is working on $ prompt

I consider that u are running exp of Oracle

I think also you need to set some env veriables.
# 6  
Old 12-04-2003
Dear Digant,

Pl do following

Create one script file. Also include your ORACLE_HOME and PATH settings like following

export ORACLE_HOME=your_oracle_home
export PATH=$ORACLE_HOME/bin:$PATH

exp /user_name/passwd/ file = /path/file-name full = N owner = user-name

check the script from $ prompt.

Now put the script with full path in the cron file.

Cheers
# 7  
Old 12-08-2003
digant,

Usually when a script works from the command line and not from the cron, it is a problem with pathing or permissions....

As stated above make sure you set the proper varialbes and $PATH if needed...

Also, ensure the script and directories have the proper exe permissions.

Also, as recommended, put the command line not in the cron, but put it in a file and make it exe and put the path in the crontab.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script working on command line and not on crontab

my problem is this: when I run a script from the command line it works but returns a failure if I run it from crontab. Basically I wanted to send a file to hdfs, I thought it was related to the fact that crontab do not know the path to hdfs so I put the full path but it still does not work: here... (16 Replies)
Discussion started by: beautymind
16 Replies

2. Red Hat

Crontab is not working

Dear Friends, I have Red Hat Linux Enterprise version 6.3. running SAP and oracle. I have created one crontab for user orasid to execute one job periodically. But it is not executing. I have checked crontab service is running. Please help in the matter. Regards, Bhagawati Pandey (5 Replies)
Discussion started by: BPANDEY
5 Replies

3. Shell Programming and Scripting

Crontab not working

Hi All, I have a script with deatils as : $ ls -ld catch_logs.sh -rwx--x--x 1 muser muser 752 Jun 5 22:36 catch_logs.sh User crontab looks likes: $ crontab -l SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin * * * * * /opt/scripts/catch_logs.sh Now if I run this script... (7 Replies)
Discussion started by: Junaid Subhani
7 Replies

4. Linux

Crontab not working

Hi, I know this is a common topic. I'm trying to launch a perl script using a contab -e entry. I've been trying diff options but nothing seems to work: My cron is running: UID PID PPID C STIME TTY TIME CMD root 3755 1 0 Nov27 ? 00:00:00 crond This... (4 Replies)
Discussion started by: krebe
4 Replies

5. HP-UX

rcp command is not working in crontab

Dear Friends, I am trying to copy SAP log file from one HPux server1 to another HPux server2 remotely through one script. following command has written in the script. rcp -rp /oracle/PRD/sapreorg/*.dbf oraprd@drsite:/oracle/PRD/sapreorg Above command working fine from command mode.... (5 Replies)
Discussion started by: BPANDEY
5 Replies

6. UNIX for Advanced & Expert Users

Crontab not working, please help

Hi, When I set the crontab to run every minute, every hour, it works fine. * * * * * env > /tmp/env.output However I want to run it every day at 8:00 AM and it does not run. * 8 * * * env > /tmp/env.output I ran the 'date' command which says it's 8AM PST and also the 'TZ'... (0 Replies)
Discussion started by: samantha13
0 Replies

7. Solaris

crontab not working

Shell = ksh Hi all, I scheduled an automated job on my application server like below, 30 13 * * 1-5 $HOME/my_script.sh However the script was not executed as expected. Any reason that may cause this to happen? (6 Replies)
Discussion started by: isaacniu
6 Replies

8. Red Hat

crontab is not working!!

I can run manually script of ntopdump.sh but crontab can't run this script very five minutes. # crontab -l */3 * * * * root sh /root/ping.sh */5 * * * * root sh /root/ntopdump.sh # # pwd /root # ls -l total 88 -rwxrwxr-x 1 root root 1645 Jun 14 19:01 anaconda-ks.cfg drwxrwxr-x 2 root... (14 Replies)
Discussion started by: getrue
14 Replies

9. Solaris

crontab is not working.

I have a script which name is sicaklik.sh It is in the root directory. I can run manually but I want to run automatically every 3 minutes but it is not working. WHY? #whoami root #crontab -l #ident "@(#)root 1.21 04/03/23 SMI" 3 * * * * sh ./sicaklik.sh #ls -l sicaklik*... (6 Replies)
Discussion started by: getrue
6 Replies

10. UNIX for Dummies Questions & Answers

crontab not working right

I am having problems with a sparc5 solaris 7 box, when i try to edit cron, (crontab -e as root), it says $ crontab -e 0 and then nothing, if i enter anything it errors out but does accept q for quit. But doesn't bring up my editor of the cron file. How can I troubleshoot this? ... (3 Replies)
Discussion started by: kymberm
3 Replies
Login or Register to Ask a Question