首页  登陆  注册  博客集  下载频道  网络硬盘  学院论坛  家园
IT学院 网站地图 网站地图
收藏本站 收藏本站
高级搜索 高级搜索
 新闻IT新闻 互联网 微软 黑客新闻 网络网络协议 故障 网络管理 TCP/IP 无线技术 解决方案 黑客技术 漏洞 软件评测 安全资讯
 数据MSsql Oracle Mysql PL/SQL 备份 系统:Linux vista Windows FTP 防火墙 注册表 服务器行情 服务器应用 解决方案 WEB服务器
 墙纸风景壁纸 游戏壁纸 体育壁纸 汽车壁纸 人文壁纸 影视壁纸 广告壁纸 花卉壁纸 节日壁纸 动漫壁纸 明星壁纸 绘画壁纸 月历壁纸
当前位置: > 主页>数据库技术>Oracle>入门基础>最常碰到的10个Oracle错误
热门文章排行
 
热门文章排行 Oracle常见错误代码的分
最常碰到的10个Oracle错
ORACLE常用Script
Oracle 全球解答的最hot
Re: 请问youngcow的FTP
Re: 请问ORACLE共享池的
Oracle9i New Features
常用数据库比较
Clone an Oracle Databa
ORACLE Developer/2000
精采文章推荐
 
精采文章推荐 Oracle FAQ 之SQL&PL/SQ
UNIX和WINDOWS2000上的O
Oracle入门基本知识一点
ORACLE常用傻瓜问题1000
内置XML能成为oracle的
你的数据库升级吗?
ORACLE培训教程(4)-Pro
ORACLE培训教程(3)-SQL
ORACLE培训教程(1)-ORAC
ORACLE Developer/2000
最新更新文章
 
最新更新文章 深入了解管理Oracle实例
Oracle数据库导入导出方
学Oracle不能不知道的知
Oracle 50个具有决定意
Oracle FAQ 之OS相关与
Oracle FAQ 之构架体系
Oracle FAQ 之SQL&PL/SQ
Index of Oracle
Oracle数据类型简介
数据仓库离我们到底有多

最常碰到的10个Oracle错误

编辑:   来源:  日期:2008-02-06   我要投稿      家园

This document contains information about errors frequently encountered by
  new DBAs, along with appropriate actions to be taken in each circumstance.
  
  +==+
  
  Summary:
  10 COMMON RDBMS ERRORS
  
  +=+
  
  1) ORA-1547
  
   a) on Rollback segment when importing.
  
   Specify commit=y and a large buffer on import. This way the Rollback
   will be released after each array, as opposed to each object.
  
   b) when allocating an extent on a tablespace with alot of free space.
  
   Select max(blocks) from DBA_FREE_SPACE. You may have free space but it
   might not be contiguous. Make sure it is greater than the extent it
   is trying to allocate. You can reduce the storage parameters NEXT and
   PCTINCREASE if it isn't.
  
  2) ORA-1556 max extents of 121 exceeded when storage is set for maxextents
   of 999.
  
   Most platforms have a max of 121 even though it allows you to specify
   999. (see the readme for your platform)
  
  3) ORA-1090 shutdown in progress when starting up even after a shutdown was
   issued quite some time ago.
  
   If the background processes aren't running the SGA could have been left
   out there... Issue a startup force open (which does a shutdown abort
   first).
  
  4) IMP-0003, ORA-942 and IMP-00023 on import.
  
   Run catalog.sql and expvew.sql (renamed catexp.sql in v7) as sys before
   the import. Both files are in $ORACLE_HOME/rdbms/admin (UNIX).
  
  5) ORA-904 Invalid column name on import.
  
   Run expvew.sql (catexp.sql) before the import.
  
  6) ORA-1034 Oracle not available.
  
   Startup the DB first...if it is started check your searchpath.
   Make sure that ORACLE_SID is set correctly For setuid issues, see
   PRE 1006554.6.
  
  7) ORA-1578 Oracle Data Block corrupted (file # num and block # num)
  
   To determine where the corruption is:
   select * from sys.dba_extents where file_id = filenum and blocknum
   between block_id and (block_id + blocks - 1);
   The filenum and blocknum are the numbers in the 1578 error.
   This query should give the segment_name and segment_type
   (i.e table and its name).
   In order to salvage the uncorrupted part of the table you can add
   an entry to the init.ora:
   event = "10231 trace name context forever"
   This will skip the corrupted block on a table scan. Export the table,
   drop and recreate it from import.
  
  8) ORA-604 what does it mean?
  
   Usually it comes with another error such as 1547....if it can't be found
   in any of the trace files try setting the following event in init.ora and
   restarting the DB.
   event="604 trace name errorstack forever"
   for the output of this look in the trace files in the directory given by
   the USER_DUMP_DEST parameter in init.ora.
  
  9) My create database is failing with ORA-1519: error while processing file
  
   Take out the INIT_SQL_FILES param out of init.ora, run the scripts
   by hand after the database is created.
  
  10) Out of shared memory (ORA-4031).
  
   Try de-fragmenting the shared pool by running an 'alter system flush
   shared_pool' If that is not enough, increase the shared_pool_size
   parameter.
  
  +==+



上一篇:Oracle常见错误代码的分析与解决一  
下一篇:ORACLE常用Script
 关键字:  
文章评论】 【收藏本文】 【推荐好友】 【打印本文】 【论坛讨论

   相关文章:

   文章评论:(0条)
  
 请留名: 匿名评论   点击查看所有评论
 

  责任编辑:IT学院  声明:刊登此文章是为了传递更多信息,文章内容仅供参考,转载请注明出处。