1834340 Members
2031 Online
110066 Solutions
New Discussion

Message

 
Javier Ortiz Guajardo
Frequent Advisor

Message

My Oracle administrator receive this message in oracle log:

Can't open log file, no timestamp available in directory.

i think this is not a unix problem !

What do you think?

Thanks.
The obstacles are those things that the people see when they left to see their goals.
4 REPLIES 4
Sridhar Bhaskarla
Honored Contributor

Re: Message

Hi,

If it says log file, then it may not be a unix problem. Can your DBA tell what this log file is?.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
Javier Ortiz Guajardo
Frequent Advisor

Re: Message

he is running a shell script qith the instruction
...
sapdba -analyze A130 -method C
echo `date` A131 >> upd_nasa.txt
sapdba -analyze A131 -method C
echo `date` A132 >> upd_nasa.txt
sapdba -analyze A132 -method C
echo `date` A133 >> upd_nasa.txt
....

The obstacles are those things that the people see when they left to see their goals.
Dave Hutton
Honored Contributor

Re: Message

I'm assuming the log file already exists?

Since you snipped it out, I'm assuming your first line has a single '>' in your redirection. The >> is append. And if the file doesn't already exist I think you'll get the same sort of message your talking about.

Dave

Dave Hutton
Honored Contributor

Re: Message

Blah I tested. >> should create a file if it doesn't exist. I should of tested it prior to posting. I could of sworn it wouldn't create it before. I guess my mind is going to mush. =)

Dave