当前位置:  数据库>oracle

ORA-01200错误的分析

    来源: 互联网  发布时间:2017-05-25

    本文导语: 一 触发ora-01200错误的原因 [Oracle@oracle ~]$ oerr ora 0120001200, 00000, "actual file size of %s is smaller than correct size of %s blocks"// *Cause: The size of the file as returned by the operating system is smaller//        than the size of the file as indicated in the file header ...

一 触发ora-01200错误的原因
 
[Oracle@oracle ~]$ oerr ora 01200
01200, 00000, "actual file size of %s is smaller than correct size of %s blocks"
// *Cause: The size of the file as returned by the operating system is smaller
//        than the size of the file as indicated in the file header and the
//        control file. Somehow the file has been truncated. Maybe it is the
//        result of a half completed copy.
// *Action: Restore a good copy of the data file and do recovery as needed.

数据文件实际块数小于数据文件头部记录的数据文件块数

二 用bbed构造一个ora-01200错误
 
1 数据文件/oracle/test/jiujian1.dbf实际占用块数如下:
 
SQL> select file_name,blocks from dba_data_files where file_id=11;
 
FILE_NAME                          BLOCKS
----------------------------------------          ---------
/oracle/test/jiujian1.dbf                1048
 
2 用bbed修改数据文件头部记录的数据文件占用块数
BBED> info
 File# Name                                                        Size(blks)
 ----- ----                                                        ----------
    1 /oracle/CRM2/system1.dbf                                        61440
    2 /oracle/CRM2/zxb.dbf                                              1280
    3 /oracle/CRM2/CRM/sysaux01.dbf                                    37120
    4 /oracle/CRM2/CRM/users01.dbf                                      640
    5 /oracle/CRM2/zxa.dbf                                            12800
    6 /oracle/CRM2/CRM/undotbs2.dbf                                    25600
    7 /oracle/CRM2/zxc.dbf                                              1280
    8 /oracle/CRM2/CRM/zxbig1.dbf                                    262144
    11 /oracle/test/jiujian1.dbf                                          128
 
BBED> set dba 11,1
        DBA            0x02c00001 (46137345 11,1)
 
BBED> p  offset 44     
kcvfh.kcvfhhdr.kccfhfsz
-----------------------
ub4 kccfhfsz                                @44      0x00000418 (十进制1048)
 
BBED> set offset 44
        OFFSET          44
 
BBED> dump /v count 30
 File: /oracle/test/jiujian1.dbf (11)
 Block: 1      Offsets:  44 to  73 Dba:0x02c00001
-------------------------------------------------------
 18040000 00200000 0b000300 00000000 l ..... ..........
 00000000 00000000 00000000 0000    l ..............
 
 
 
BBED> modify /x 1904
Warning: contents of previous BIFILE will be lost. Proceed? (Y/N) y
 File: /oracle/test/jiujian1.dbf (11)
 Block: 1                Offsets:  44 to  73          Dba:0x02c00001
------------------------------------------------------------------------
 19040000 00200000 0b000300 00000000 00000000 00000000 00000000 0000
 
 
 
BBED> p offset 44
kcvfh.kcvfhhdr.kccfhfsz
-----------------------
ub4 kccfhfsz                                @44      0x00000419(10进制为1049)
 
BBED> sum apply
Check value for File 11, Block 1:
current = 0x34f4, required = 0x34f4
 
3 启动数据库便可触发ora-01200错误
SQL> startup
ORACLE instance started.
 
Total System Global Area 322961408 bytes
Fixed Size                  2020480 bytes
Variable Size              92277632 bytes
Database Buffers          222298112 bytes
Redo Buffers                6365184 bytes
Database mounted.
ORA-01122: database file 11 failed verification check
ORA-01110: data file 11: '/oracle/test/jiujian1.dbf'
ORA-01200: actual file size of 1048 is smaller than correct size of 1049 blocks
 
三ora-01200错误的解决
 
方式1 通过bbed 改数据文件头部偏移量44处的值为数据文件实际占用块数
 
方式2 通过dd命令填充数据文件实际大小为correct size of 1049 blocks中的值
dd if=/dev/zero of=/oracle/test/jiujian1.dbf bs=8192 count=1 seek=1049

相关阅读:

SPFILE 错误导致数据库无法启动(ORA-01565) 

ORA-01172、ORA-01151错误处理 

ORA-00600 [2662]错误解决


    
 
 

您可能感兴趣的文章:

  • 出现ORA-01401和ORA-01008错误?
  • Eclipse连接Oracle数据库的ORA-00604 ORA-12705错误
  • oracle ORA-01114、ORA-27067错误解决方法
  • Oracle不能删除表 ORA-00604 ORA-01422 错误
  • ORA-12514及ORA-28547错误解决方案
  • plsql连接oracle数据库报ora 12154错误解决方法
  • oracle 11g导出数据时报ORA 1455错误的处理方法
  • Oracle 数据库闪回功能设置出现ORA-19809和ORA-19804错误
  • 为什么我读取数据库时出现:ORA-00600: 内部错误代码,参数: [ttcgcshnd-1], [0], [],错误?
  • ORACLE出现错误1033和错误ORA-00600的解决方法
  • Linux 下数据库oracle出现ORA-27102错误的解决办法
  • PHP连接Oracle错误ORA-24324服务句柄未初始化的解决方法
  • 解决报错ora-32035的方法分析
  • ORA-00947:Not enough values (没有足够的值)的深入分析
  • Oracle ORA-22908(NULL表值的参考)异常分析与解决方法
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何得到带有ora的行的下一行
  • 如何配置 linux 下 oracle 的 listener .ora 和
  • 浅析如何在tnsnames.ora中配置监听
  • Orcle的package中访问其它Schema的表报错ORA-00942解决方法
  • oracle远程连接服务器出现 ORA-12170 TNS:连接超时 解决办法
  • [Oracle] 浅析令人抓狂的ORA-01555问题
  • aq.executeQuery: ORA-00020: maximum number of processes (59) exceeded
  • solaris10 安装 ora9.2.0.1 时报错
  • 在UNIX下,我的ORA817该怎么样才可以自己启动呀?
  • 基于ORA-12170 TNS 连接超时解决办法详解
  • 安装oracle出现error:ora-01031:insufficient privilleges的解决
  • 谁能帮忙解释一下: ORA-01000 : maximun open cursors exceeded
  • 关于Oracle游标的问题(ORA-01000: maximum open cursors exceeded)
  • 我在Linux7。3下面装了一个Oracle8i,但是现在启动不起来了,总是报错ORA-01031: insufficient privileges
  • zilong28提问:Tomcat3.2报错内容是Error occurs when connecting DB: ORA-00020: maximum number of processes(59) exceeded 我应该如何解决,先谢了
  • ORA-28002 Oracle 11g存在密码过期问题解决方案
  • oracle报错(ORA-00600)问题处理
  • 如何解决ORA-01843与NLS_DATE_FORMAT问题
  • Oracle 10g之ORA-32004问题
  • 在客户端配置TNS测试报错ORA-12170:TNS:连接超时


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,