Operating System - HP-UX
1752805 Members
5762 Online
108789 Solutions
New Discussion

getting error from TUSC when adding any file to database

 
John Ferro
Regular Advisor

getting error from TUSC when adding any file to database

Hello,

I have server "ia64 hp superdome server SD64B" and I'm getting output from TUSC when adding any files to database:
pw_wait(0x9fffffffffff16b0) ... ERR#11 EAGAIN
getrusage(RUSAGE_SELF, 0x9fffffffffff1440)... = 0
gettimeofday(0x9fffffffffff1740, NULL)... = 0

Why I'm getting above results?
Regards,

1 REPLY 1
Hein van den Heuvel
Honored Contributor

Re: getting error from TUSC when adding any file to database

>> Why I'm getting above results?

Because you asked for it? Seems fair to me.

What's the REAL problem? Any end-user messages? Delays?
Traces or Alert logs entries (Oracle)?
What is the DB ? Version?
What is the OS ? Version? (Unlikely to be relevant, but you never know...)
Platform ? (Unlikely to be relevant)

What you shows look like a relatively typical snippet of database code with a socket FD in non-blocking I/O mode.
EAGAIN/EWOULDBLOCK is a normal, expected condition that the DB will deal with. The other two calls are there to support the statistics for the DB an can probably be switched off on request.
In Oracle that would be done by setting the init param statistics_level to 'basic'.
Not that I would recommend this, but you could.

http://www.oracle-base.com/articles/9i/StatisticsLevel9i.php

Hope this helps some,
Hein.