精华区 [关闭][返回]

当前位置:网易精华区>>讨论区精华>>编程开发>>● 数据库技术>>Oracle产品>>Oracle常见错误代码的分析与解决(五) (资料)

主题:Oracle常见错误代码的分析与解决(五) (资料)
发信人: mengyinuaa(烟飘雾渺)
整理人: pengxiaohui(2002-04-12 11:38:29), 站内信件
天极网· ·尹珂··Yesky

  产生原因:这是由于装载的表或视图不存在,多半是CATEXP.SQL还没有运行,无法执行Export视图,如果CATEXP.SQL已经运行,则可能是版本错误。 

  解决方法:因为Import和Export共享的一些视图是通过运行CATEXP.SQL来装载的(它们具有相同的视图),并不生成单独的CATEXP.SQL,因而造成视图与Export代码不同步,较难保持彼此之间的兼容,用户就必须建立自己的Export应用,从而避免ORA-00942的错误。 

  相应的英文如下:



Cause:The table or view entered does not exist,a synonym that is jnot allowed here was used,or a view was referenced where a table is required.Existing user tables and views can be listed by querying the data dictionary.Certain privileges may required to access the table.If an application returned this message,the table the application tried to access does not exist in the database,or the application does not have access to it. 

Action:Check each of the following: 

The spelling of the table or view name. 

That a view is not specified where a table is required 

That an existing table or view name exists. 

Contact the database administrator if the table needs to be created or if user or application priviledes are required to access the table. 

Also, if attempting to access a table or view in another schema,make certain thecorrect schema is referenced and that access to the object is granted. 


ORA-01598:rollback segment “name” is not online 

Cause:The rollback segment was taken offline either manually or by SMON. 

Action:Check the status of the rollback segment in DBA_ROLLBACK_SEGS. 

ORA-1636: rollback segment “name” is already online 

Cause:A rollback segment can only be used by one instance and an instance is trying to bring a rollback segment online that is already in use. 

Action:Check that the values set in the initialization parameter file for parameters ROLLBACK_SEGMENTS,ROLLBACK_SEGMENT_INITIAL,and ROLLBACK_SEGMENT_COUNT are correctly set for the instance whiththe problem,Also check that the instance is using the correct initialization parameter file.Make sure you are not confused about the difference between private and public rollback segments.See the Oracle8 Server Administrator’s Guide for more information about using rollback segments in paraller mode.  




----

         |  |  | 
        )_) )_) )_) 
       )___))___))___)\ 
       )____)____)_____)\\ 
      _____|____|____|____\\\__ 
 ---------\          /--------- 
  ^^^^^ ^^^^^^QQ:1456070^^^^^^^^^^^^^^^ 


     不管世事如何變幻
     不管前面有多少暗礁
     我知道這個世界上還有一個掌燈為我守候。
               
                                 烟飘雾渺
  

[关闭][返回]