<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Oracle error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281667#M882344</link>
    <description>&lt;BR /&gt;You may want to UNION the file names and file numbers from the v$xxxxfile tables as per script below.&lt;BR /&gt;&lt;BR /&gt;If you can not open teh database then queries are allowed on fixed tables/views only. So you can query v$datafile, but not dba_data_files;&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;column status format a8&lt;BR /&gt;column file format a45&lt;BR /&gt;column id format 999&lt;BR /&gt;column type format a7&lt;BR /&gt;&lt;BR /&gt;set pages 9999&lt;BR /&gt;set heading off&lt;BR /&gt;set FEEDBACK off&lt;BR /&gt;select 'Redo' "type", l.group# "Id", l.status, l.bytes/(1024*1024) "MB",&lt;BR /&gt;    MEMBER "File" from v$logfile f, v$log l where l.group# = f.group#&lt;BR /&gt;union&lt;BR /&gt;select 'Data' "type", FILE# "Id", status, bytes/(1024*1024) "MB",&lt;BR /&gt;    name "File" from v$datafile&lt;BR /&gt;union&lt;BR /&gt;select 'Temp' "type", FILE# "Id", status, bytes/(1024*1024) "MB",&lt;BR /&gt;    name "File" from v$tempfile&lt;BR /&gt;union&lt;BR /&gt;select 'Control' "type", rownum "Id", status, 0 "MB",&lt;BR /&gt;    name "File" from v$controlfile&lt;BR /&gt;order by 1,2&lt;BR /&gt;/&lt;BR /&gt;</description>
    <pubDate>Sat, 22 May 2004 13:24:44 GMT</pubDate>
    <dc:creator>Hein van den Heuvel</dc:creator>
    <dc:date>2004-05-22T13:24:44Z</dc:date>
    <item>
      <title>Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281654#M882331</link>
      <description>Dear All,&lt;BR /&gt;&lt;BR /&gt;I am facing below problem in HPUX 11i in Superdome server.&lt;BR /&gt;&lt;BR /&gt;The below is oracle trace.......&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Node name:      bscstest&lt;BR /&gt;Release:        B.11.11&lt;BR /&gt;Version:        U&lt;BR /&gt;Machine:        9000/800&lt;BR /&gt;Instance name: MIS&lt;BR /&gt;Redo thread mounted by this instance: 0 &lt;NONE&gt;&lt;BR /&gt;Oracle process number: 0&lt;BR /&gt;3074&lt;BR /&gt;&lt;BR /&gt;*** SESSION ID:(16.36) 2004-05-20 08:32:58.569&lt;BR /&gt;OPIRIP: Uncaught error 447. Error stack:&lt;BR /&gt;ORA-00447: fatal error in background process&lt;BR /&gt;ORA-01114: IO error writing block to file 202 (block # 138985)&lt;BR /&gt;ORA-27072: skgfdisp: I/O error&lt;BR /&gt;HP-UX Error: 25: Not a typewriter&lt;BR /&gt;Additional information: 138985&lt;BR /&gt;ORA-01114: IO error writing block to file 202 (block # 138985)&lt;BR /&gt;ORA-27072: skgfdisp: I/O error&lt;BR /&gt;HP-UX Error: 25: Not a typewriter&lt;BR /&gt;Additional information: 138985&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;can anybody help on this&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;&lt;/NONE&gt;</description>
      <pubDate>Wed, 19 May 2004 23:41:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281654#M882331</guid>
      <dc:creator>HutchAdmin</dc:creator>
      <dc:date>2004-05-19T23:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281655#M882332</link>
      <description>&lt;BR /&gt;You have an IO problem in db-file 202.&lt;BR /&gt;SELECT file_name from dba_datafiles where file_number = 202;&lt;BR /&gt;&lt;BR /&gt;(from memory. Check column names with 'describe dba_datafiles').&lt;BR /&gt;&lt;BR /&gt;Once you have the file_name try for example a copy or dd to /dev/null to confirm the io problem.&lt;BR /&gt;&lt;BR /&gt;You'll probably need to restore the backups and recover with archive logs.&lt;BR /&gt;&lt;BR /&gt;good luck,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 May 2004 00:31:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281655#M882332</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-05-20T00:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281656#M882333</link>
      <description>Just check your /var/adm/syslog/syslog.log file.&lt;BR /&gt;&lt;BR /&gt;check whether any of the disks have gone bad.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Revert</description>
      <pubDate>Thu, 20 May 2004 00:44:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281656#M882333</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2004-05-20T00:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281657#M882334</link>
      <description>Hi Hien / mani&lt;BR /&gt;&lt;BR /&gt;1.   There is no error in syslog regarding disk faliure.&lt;BR /&gt;&lt;BR /&gt;2.    File no 202 does not exists in database.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;point which i like to mention here in that we had recreated database after a crash on manday........&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 May 2004 00:55:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281657#M882334</guid>
      <dc:creator>HutchAdmin</dc:creator>
      <dc:date>2004-05-20T00:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281658#M882335</link>
      <description>First of all, check the space available on your hard drive!&lt;BR /&gt;Then test the "problem disk"!</description>
      <pubDate>Thu, 20 May 2004 00:56:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281658#M882335</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2004-05-20T00:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281659#M882336</link>
      <description>Dear Twang,&lt;BR /&gt;&lt;BR /&gt;Filesystem is 61% used.....&lt;BR /&gt;and disk status is fine &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 May 2004 01:04:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281659#M882336</guid>
      <dc:creator>HutchAdmin</dc:creator>
      <dc:date>2004-05-20T01:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281660#M882337</link>
      <description>It seems that the database or controlfile don't see the problem datafile, try to do a backup controlfile to trace to verify it:&lt;BR /&gt;ALTER DATABASE BACKUP CONTROLFILE TO TRACE;</description>
      <pubDate>Thu, 20 May 2004 01:16:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281660#M882337</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2004-05-20T01:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281661#M882338</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;looks like some permission issue looking at Oracle Metalink:&lt;BR /&gt;&lt;BR /&gt;Problem Explanation:  ====================    &lt;BR /&gt;&lt;BR /&gt;If you created another user and the permissions on the datafiles that you are  trying to migrate are 600 you can not perform a data migration.  When the  permissions are changed to 660 the migration completes successfully.        &lt;BR /&gt;&lt;BR /&gt;Solution Description:&lt;BR /&gt;=====================&lt;BR /&gt;&lt;BR /&gt;You need to change the permissions on the datafiles to 660.&lt;BR /&gt;&lt;BR /&gt;You must change the permissions on the datafiles you are trying to migrate to  660. Change to the directory where the datafiles are and type the following:     &lt;BR /&gt;&lt;BR /&gt;chmod 660 datafile.dbf   &lt;BR /&gt;&lt;BR /&gt;Solution Explanation:  &lt;BR /&gt;=====================    &lt;BR /&gt;&lt;BR /&gt;If another user was created and you are trying to migrate a file as the new  user you must have read and write permissions to the file. &lt;BR /&gt;&lt;BR /&gt;hope is helps.&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Thu, 20 May 2004 01:19:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281661#M882338</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2004-05-20T01:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281662#M882339</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;can you try to do a full database export?&lt;BR /&gt;&lt;BR /&gt;If there is a problem with a table in particular, you may trap it there!&lt;BR /&gt;&lt;BR /&gt;Then if it is a database block corruption or the like, you can still try to move the table to another tablespace (alter table &lt;TABLE name=""&gt; move tablespace &lt;TABLESPACE name=""&gt;).&lt;BR /&gt;&lt;BR /&gt;hope this helps too!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj&lt;/TABLESPACE&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 20 May 2004 02:54:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281662#M882339</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2004-05-20T02:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281663#M882340</link>
      <description>Hi HutchAdmin,&lt;BR /&gt;&lt;BR /&gt;202 is the file# (file ID). Do the following to see the state,name, etc... of the datafile:&lt;BR /&gt;&lt;BR /&gt;select * &lt;BR /&gt;from v$datafile&lt;BR /&gt;where file# = 202&lt;BR /&gt;&lt;BR /&gt;And thiso one to see more about the specific block:&lt;BR /&gt;&lt;BR /&gt;select * &lt;BR /&gt;from dba_extents&lt;BR /&gt;where block_id = 138985</description>
      <pubDate>Fri, 21 May 2004 03:19:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281663#M882340</guid>
      <dc:creator>Eric Antunes</dc:creator>
      <dc:date>2004-05-21T03:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281664#M882341</link>
      <description>As you said you've recovered the database. I supose you done:&lt;BR /&gt;&lt;BR /&gt;STARTUP NOMOUNT&lt;BR /&gt;CREATE CONTROLFILE REUSE SET DATABASE "MIS" RESETLOGS NOARCHIVELOG&lt;BR /&gt;    MAXLOGFILES 16&lt;BR /&gt;    MAXLOGMEMBERS 2&lt;BR /&gt;    MAXDATAFILES 150&lt;BR /&gt;    MAXINSTANCES 1&lt;BR /&gt;    MAXLOGHISTORY 680&lt;BR /&gt;LOGFILE&lt;BR /&gt;  GROUP 1 (&lt;BR /&gt;    '/disc1/oradata/MIS/log01a.dbf',&lt;BR /&gt;    '/disc2/app/oracle/MIS/log01b.dbf'&lt;BR /&gt;  ) SIZE 10M,&lt;BR /&gt;  GROUP 2 (&lt;BR /&gt;    '/disc1/oradata/MIS/log02a.dbf',&lt;BR /&gt;    '/disc2/app/oracle/MIS/log02b.dbf'&lt;BR /&gt;  ) SIZE 10M&lt;BR /&gt;DATAFILE&lt;BR /&gt;  '/disc1/oradata/MIS/system01.dbf',&lt;BR /&gt;  '/disc1/oradata/MIS/rbs01.dbf',&lt;BR /&gt;  '/disc1/oradata/MIS/temp01.dbf',&lt;BR /&gt;...&lt;BR /&gt;'/disc1/oradata/MIS/system02.dbf'&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;RECOVER DATABASE;&lt;BR /&gt;&lt;BR /&gt;ALTER DATABASE OPEN RESETLOGS; &lt;BR /&gt;&lt;BR /&gt;Have you done all this steps?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 21 May 2004 03:29:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281664#M882341</guid>
      <dc:creator>Eric Antunes</dc:creator>
      <dc:date>2004-05-21T03:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281665#M882342</link>
      <description>From your init.ora, what is your db_files parameter set to?  Is it 200?&lt;BR /&gt;&lt;BR /&gt;I also am assuming here that you're on Oracle 9+&lt;BR /&gt;&lt;BR /&gt;I recently had a similar problem trying to find file 201 - in Oracle 8 and below there were only 'datafiles'.  Now, in Oracle 9+, they've introduced 'datafiles' and 'tempfiles'.  You now have 2 v$ views - v$datafile and v$tempfile.&lt;BR /&gt;&lt;BR /&gt;In my case, file-id 201 indicated a temporary file #1 (db_files + FileID)&lt;BR /&gt;&lt;BR /&gt;Are your temporary tablespaces set to AUTOEXTEND ON?  There is a definite bug under Windows where if a Temp tablespace goes to autoextend over a 4 GB boundary (4GB, 8GB, 12 GB etc) you will get this error - but I don't know if it's true under HPUX.&lt;BR /&gt;&lt;BR /&gt;Also, if you have autoextend on and you don't have largefiles defined on your filesystem and the temp file is trying to autoextend over the 2 GB limit, you may also find yourself with this error (although I can't test this one to be sure).&lt;BR /&gt;&lt;BR /&gt;Hope some of those pointers give you something to look at.  Have you also searched at Metalink?&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Fri, 21 May 2004 10:38:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281665#M882342</guid>
      <dc:creator>Stephen Wales_1</dc:creator>
      <dc:date>2004-05-21T10:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281666#M882343</link>
      <description>HutchAdmin,  &lt;BR /&gt;Reciently has increased your temporary or created tablespaces temporary ?  &lt;BR /&gt;If you don't have problem of corruption of data it can be that your or your temporary tablespaces are had  big that your real space in the filesystem.  &lt;BR /&gt;  &lt;BR /&gt;Oracle sometimes allows you to add temporary datafiles from a superior size to that of your filesystem and when it really ends up occupying it it sends you that error class.  &lt;BR /&gt;when you look for  the id doesn't appear since it doesn't exist alone in the moment that oracle needs to use an extent of the temporal.&lt;BR /&gt;&lt;BR /&gt;cheers.&lt;BR /&gt;E.</description>
      <pubDate>Sat, 22 May 2004 06:20:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281666#M882343</guid>
      <dc:creator>Emilio Brusa</dc:creator>
      <dc:date>2004-05-22T06:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281667#M882344</link>
      <description>&lt;BR /&gt;You may want to UNION the file names and file numbers from the v$xxxxfile tables as per script below.&lt;BR /&gt;&lt;BR /&gt;If you can not open teh database then queries are allowed on fixed tables/views only. So you can query v$datafile, but not dba_data_files;&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;column status format a8&lt;BR /&gt;column file format a45&lt;BR /&gt;column id format 999&lt;BR /&gt;column type format a7&lt;BR /&gt;&lt;BR /&gt;set pages 9999&lt;BR /&gt;set heading off&lt;BR /&gt;set FEEDBACK off&lt;BR /&gt;select 'Redo' "type", l.group# "Id", l.status, l.bytes/(1024*1024) "MB",&lt;BR /&gt;    MEMBER "File" from v$logfile f, v$log l where l.group# = f.group#&lt;BR /&gt;union&lt;BR /&gt;select 'Data' "type", FILE# "Id", status, bytes/(1024*1024) "MB",&lt;BR /&gt;    name "File" from v$datafile&lt;BR /&gt;union&lt;BR /&gt;select 'Temp' "type", FILE# "Id", status, bytes/(1024*1024) "MB",&lt;BR /&gt;    name "File" from v$tempfile&lt;BR /&gt;union&lt;BR /&gt;select 'Control' "type", rownum "Id", status, 0 "MB",&lt;BR /&gt;    name "File" from v$controlfile&lt;BR /&gt;order by 1,2&lt;BR /&gt;/&lt;BR /&gt;</description>
      <pubDate>Sat, 22 May 2004 13:24:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-error/m-p/3281667#M882344</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-05-22T13:24:44Z</dc:date>
    </item>
  </channel>
</rss>

