Thursday, June 07, 2007

ORA-01114 and ORA-27063

On an Solaris platform you may see an error message like:
ORA-01114: IO error writing block to file 202 (block # 458633)
ORA-27063: skgfospo: number of bytes read/written is incorrect
SVR4 Error: 28: No space left on device
Additional information: -1
Additional information: 122880
it means that a datafile cannot extend anymore because a disk (or better said, some kind of storage device) is full.

Specifically, the high numbering of the file (in blue), refers to a temporary file.

If the number is in the range between 1 - DB_FILES, where DB_FILES is an initialization parameter whose value can be retrieved either with:

select * from v$parameter
where name = 'db_files';
or in SQL*Plus with
show parameter db_files
it means that we are talking of an ordinary datafile.

In this case DB_FILES was set to 200, which means that 202 refers to a temporary file and tempfiles are numbered starting from DB_FILES + 1.

If the temporary file is set to AUTOEXTEND ON, then the root cause of the problem can be a huge query on a view requiring a big sort operation or the insertion of lots of rows into a temporary table that made the temporary tablespace grow larger than usual until all the space on the device was used up.

See more message translations for ORA-01114, ORA-27063 and search additional resources.


ORA-01114: errore I/O scrivendo blocco su file  (blocco n. )
ORA-27063: skgfospo: il numero di byte di read/written non è corretto
ORA-01114: error de E/S al escribir el bloque en el archivo (bloque número )
ORA-27063: skgfospo: el número de bytes leídos/escritos es incorrecto
ORA-01114: error d'E/S en l'escriptura d'un bloc en el fitxer (bloc # )
ORA-27063: skgfospo: el número de bytes llegits/escrits és incorrecte
ORA-01114: erreur d'E/S en écriture de blocs dans fichier '' (bloc # )
ORA-27063: skgfospo : le nombre d'octets lus/écrits est incorrect
ORA-01114: EA-Fehler beim Schreiben von Block in die Datei (Block Nr. )
ORA-27063: skgfospo: Zahl der gelesenen/geschriebenen Bytes falsch
ORA-01114: σφάλμα ΕΕ στο γράψιμο μπλοκ στο αρχείο (αριθ. μπλοκ )
ORA-27063: skgfospo: ο αριθμός bytes που διαβάσθηκαν/γράφηκαν είναι λανθασμένος
ORA-01114: IO-fejl ved skrivning af blok i filen (blok # )
ORA-27063: skgfospo: Antal læste/skrevne byte er forkert
ORA-01114: IO-fel vid lagring av block i filen (blocknr )
ORA-27063: skgfospo: antalet byte som lästs/lagrats är felaktigt
ORA-01114: I/U-feil ved skriving av blokk til filen (blokk nr )
ORA-27063: skgfospo: feil antall byte lest/skrevet
ORA-01114: IO-virhe tiedoston lohkon kirjoituksessa (lohkonro )
ORA-27063: skgfospo: kirjoitettujen/luettujen tavujen määrä on virheellinen
ORA-01114: IO hiba a(z) fájl blokkjának írása közben (blokk: # )
ORA-27063: skgfospo: a kiírt vagy a beolvasott bájtok száma nem egyezik
ORA-01114: eroare de intrare/ieşire la scrierea blocului în fişierul (bloc nr. )
ORA-27063: skgfospo: numărul de octeţi citiţi/scrişi este incorect
ORA-01114: IO-fout bij schrijven van blok naar bestand (bloknummer ).
ORA-27063: skgfospo: aantal bytes lezen/schrijven is onjuist.
ORA-01114: erro de IO durante gravação do bloco no arquivo (bloco # )
ORA-27063: skgfospo: número incorreto de bytes lidos/gravados
ORA-01114: erro de E/S ao escrever bloco no ficheiro (nº bloco )
ORA-27063: skgfospo: número de bytes lidos/gravados é incorrecto
ORA-01114: ошибка ввода/вывода при записи блока в файл (блок # )
ORA-27063: skgfospo: неверное число прочитанных/записанных байт
ORA-01114: chyba vstupu/výstupu při zápisu bloků do souboru (číslo bloku )
ORA-27063: skgfospo: počet načtených nebo zapsaných bajtů je nesprávný
ORA-01114: IO chyba pri zápise blokov do súboru (blok # )
ORA-27063: skgfospo: počet načítaných/zapísaných bajtov je nesprávny
ORA-01114: błąd We-Wy przy zapisie bloku do pliku (blok nr )
ORA-27063: skgfospo: niepoprawna liczba odczytanych/zapisanych bajtów
ORA-01114: dosyasına blok yazmada GÇ hatası (blok no )
ORA-27063: skgfospo: okunan/yazılan bayt sayısı doğru değil

No comments:

yes you can!

Two great ways to help us out with a minimal effort. Click on the Google Plus +1 button above or...
We appreciate your support!

latest articles