怎么在linux下查看oracle错误信息

更新时间:02-03 教程 由 争端 分享

怎么在linux下查看oracle错误信息?

这里提供两种方法。

1)使用oerr命令

在oracle的服务器上直接敲命令oerr 错误类型 错误编号,oracle会告诉你错在什么地方,怎么解决这个错误。例如你遇到了错误编号为ora-03206的错误,那么ora("-"前面的)是错误类型,03206是错误编号。那么我在oracle服务器上执行oerr ora 03206,出现了错误帮助。

[oracle@localhost ~]$ oerr ora 03206

03206, 00000, "maximum file size of (%s) blocks in AUTOEXTEND clause is out of range"

// *Cause: The maximum file size for an autoextendable file has

// exceeded the maximum number of blocks allowed.

// *Action: Reduce the size and retry.

[oracle@localhost ~]$

2)查看oracle的文档

到oracle的网站上下载她的技术文档,然后打开,进入主页,在左上角有error message。点击进入,然后查找你要查看的error信息。

声明:关于《怎么在linux下查看oracle错误信息》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2295291.html