• 网络学院
  • IT资讯
  • 操作系统
  • 网络技术
  • 软件应用
  • 办公软件
  • 编程技术
  • 网站架设
  • 数据库类
  • 平面设计
  • 多媒体类
  • 游戏资讯
  • 教学论文
  • 认证考试
DBA经常遇到的10个错误
  站点:
  • 首 页
  • 最新软件
  • 文章教程
  • 国内软件
  • 国外软件
  • 绿色软件
  • 源码下载
  • 字体下载
DBA经常遇到的10个错误
软件发布 DBA经常遇到的10个错误
网络软件 系统工具 应用软件 联络聊天 图形图像 多媒体类 行业软件 游戏娱乐 编程开发 安全相关 教育教学 数码软件 绿软下载
热门软件: QQ 瑞星 pplive e话通 木马克星 千千静听 office2000 五笔字根 Photoshop 视频分割
返回文章教程首页 >> 文章首页 >> 认证考试 >> Oracle认证 >> Oracle指导 >> DBA经常遇到的10个错误

DBA经常遇到的10个错误

添加时间: 2008-4-21 23:37:10  作者: Oracle指导  阅读次数:11   来源: http://www.d9soft.com

       

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企业管理器(OEM 2.1)使用指南

相关文章:

  • Sendmail 554 错误的解决
  • 常见问题诊断方法---(常见错误篇)
  • OracleORA-00903错误具体原因分析
  • Windows安装Oracle出现错误
  • 有关Oracle非法数据库对象引起的错误及解决

相关软件:

 

快速导航

  • 网络学院
  • 精品汇聚
  • 字体下载
  • 教程下载
  • ASP源码
  • PHP源码
  • Net源码
  • JSP 源码

Oracle认证分类导航

  • Oracle动态
  • Oracle指导
  • Oracle题库

本类经典文章推荐

  • Oracle中关于逻辑备份与恢复
  • Oracle开发人员JAVA存储过程
  • 为数据库的表自动生成行号
  • Oracle中的OOP概念
  • 用java从oracle取数
  • 冷备份移植到另一台Solaris机器上
  • 如何将excel数据导入oracle中
  • Oracle10.2g安装记录
  • 数据库监控工具ForOraclev1.2
  • oracle双机群集系统

Oracle指导阅读排行

  • Oracle系统表查询
  • 实例:Oracle导出EXCEL文件
  • Oracle常用的OCI函数上
  • Oracle企业管理器(OEM 2.1)使用...
  • Tomcat+SQLServer连接池配置
  • 如何将excel数据导入oracle中
  • 如何取出某一用户的密码 再原样改...
  • 实例:Oracle导出EXCEL文件
  • 案例学习Oracle错误:ORA-00604
  • 案例学习Oracle错误:ORA-00060

Oracle认证阅读总排行

  • Oracle系统表查询
  • 实例:Oracle导出EXCEL文件
  • Oracle常用的OCI函数上
  • 在ORACLE的存储过程中如何做简单的...
  • Oracle企业管理器(OEM 2.1)使用...
  • Tomcat+SQLServer连接池配置
  • 如何将excel数据导入oracle中
  • AIX下自动启动Oracle数据库与监听...
  • 如何取出某一用户的密码 再原样改...
  • 实例:Oracle导出EXCEL文件

广告位置

字母检索 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 回到顶部

关于我们 | 版权声明 | 免责条款 | 广告联系 | 软件发布 | 下载帮助 | 下载排行 | 网站地图 | 特别鸣谢 | 友情连接

copyright; 2005-2008 D9soft.com 第九软件网 版权所有