这里提供两种方法。
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信息。