1753802 Members
7513 Online
108805 Solutions
New Discussion юеВ

Re: Oracle sort error

 
Joe Redman
Advisor

Oracle sort error

When the Oracle DBA trys to do a sort, we get the following error(s):
ORA-01114: IO error writing block to file 4001
ORA-27072: skgfdisp: I/O error
HP-UX Error: 27: File too large.

We have largefiles activated on this filesystem. Sort gets to 30.5GB in size on a temp filesystem large enough to hold it, then bombs out.
Oracle version is 9i. HP-UX 11.0 OS. JFS Version 3.3.

Thanks in advance.
Peace
4 REPLIES 4
Andreas D. Skjervold
Honored Contributor

Re: Oracle sort error

Hi

This might be due to the database started with the database owner (oracle) shell variable ulimit set to a value lower than the datafile size.

to check:
ulimit -a
check for file (blocks)
set this to unlimited or a value bigger than your temp datafile size, and restart the database with new setting.

Andreas

Only by ignoring what everyone think is important, can you be aware of what everyone ignores!
Joe Redman
Advisor

Re: Oracle sort error

Andreas, thanks for the reply.

Ulimit for Oracle already set to unlimited.

I was wondering if this could be a potential disk problem as everything else checks out although, disk mounts and checks out okay.

We are going to try a couple of other things and I will let all know how it comes out via this forum.

Joe
Peace
Paula J Frazer-Campbell
Honored Contributor

Re: Oracle sort error

Hi

I am not 100% sure but doesn't sort when running pipe through a temp file so if after a crash it leaves a 30Gig file would the temp file be about the same size ?

30 +30 = BIG
- crash, and tmp file dissapears
- so only evidence of this is the 30 gig file.
As the 30 + 30 is BIG will your disk handle this?

Is the temp file placed in /tmp ?




Just some ideas

Paula
If you can spell SysAdmin then you is one - anon
Andreas D. Skjervold
Honored Contributor

Re: Oracle sort error

Hi again

Im a litle bit on thin ice here but anyway;
I take it that the sort is done in the TEMP tablespace, and that the tablespace is created with the temporary storage option.

What happens is that Oracle creates the tablespace file, but does infact not claim the space until the FIRST time you make use of this space.

So what you see as plenty of free space in your filesystem might infact not be enough.

So if your temp tablespace is 30 GB you need 30GB free (at least) + if allowing the tablespace to grow (autoextend) you'll need space for this as well.

You might also want to check / apply the latest vxfs patches, so they conform to Oracles latest release note.

Andreas
Only by ignoring what everyone think is important, can you be aware of what everyone ignores!