如何查看通过系统命令查看ORA错误信息?

比如直接查看ORA-01031错误

gaosheng-> oerr ora 01031
01031, 00000, "insufficient privileges"
// *Cause: An attempt was made to change the current username or password
//         without the appropriate privilege. This error also occurs if
//         attempting to install a database without the necessary operating
//         system privileges.
//         When Trusted Oracle is configure in DBMS MAC, this error may occur
//         if the user was granted the necessary privilege at a higher label
//         than the current login.
// *Action: Ask the database administrator to perform the operation or grant
//          the required privileges.
//          For Trusted Oracle users getting this error although granted the
//          the appropriate privilege at a higher label, ask the database
//          administrator to regrant the privilege at the appropriate label.
gaosheng-> 

如何查看通过系统命令查看ORA错误信息?

时间: 2024-10-10 01:39:40

如何查看通过系统命令查看ORA错误信息?的相关文章

查看package编译时的错误信息及重新编译

开发时,一般都是使用PL/SQL工具进行开发,查看编译错误及重新编译都很简单,但是一般的生产环境是不允许连接外界工具的,只能在命令行中进行重新编译及查看,今天我就遇到了这个问题,现在总结如下: 1.获取数据库中的无效对象: 1 set linesize 180; 2 col owner format a10 3 col object_name format a45 4 col object_type format a20 5 col status format a20 6 SELECT owne

ASP.NET MVC遍历ModelState的错误信息

在ASP.NET MVC中,ModelState中包含了验证失败的错误信息,具体被存储在ModelState.Values[i].Errors[j].ErrorMessage属性中.当然,通过打断点,单步调试可以查看具体的验证失败错误信息,但有时候希望把ModelState中的验证失败信息遍历显示出来. ModelState类型是ModelStateDictionary,ModelStateDictionary是一个字典集合,键是模型的各个属性,值是模型各个属性对应的ModelState. Mo

tomcat启动一闪就退出的错误无法查看错误信息的解决办法

tomcat 有错误时 启动startup.bat一闪就退出的解决办法 打开 startup.bat 文件 最后 把start 改为run tomcat启动一闪就退出的错误无法查看错误信息的解决办法,布布扣,bubuko.com

学习笔记6-Android查看应用输出的错误信息 如何部署应用到真实手机 发布软件

查看应用输出的错误信息 1.      通过LogCat窗口查看信息 右上角图标可以筛选不同级别的信息(比如info等). 右上角的+可以进行信息筛选 把应用部署到真实手机 1.      要把手机的驱动安装到电脑上 2.      将手机通过usb链接到电脑上 打开设备管理试图(Devices),手机链接到电脑上的时候自己的手机就会出现在这个列表里面. 右击项目run as →application 可以选择我们链接上的手机.就安装到真是的手机了. 发布软件(打包成APK) 右击项目Expor

asp.net网站远程查看错误信息

在调试asp.net网站的时候,可能需要远程查看错误信息,可以通过修改web.config文件来做到,配置如下: <!-- Web.Config 配置文件 --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration> 默认默配的情况下,是没有该配置的,有一段这样的配置注释,下面的配置是可以显示指定

oracle查看所有ora错误描述

查看单个ora错误描述: oerr ora 3110 查看全部ora错误描述: HH:/oracle$>oerr ora [0-9]* >>aa.txtHH:/oracle$>grep 00000 aa.txt >>b.txtHH:/oracle$>rm aa.txtHH:/oracle$>vi b.txt 原文地址:https://www.cnblogs.com/myheart-new/p/12060425.html

手机设备上调试接口,查看错误信息

在微信小程序开发的时候,请求接口不成功,手机上未反馈任何消息,不方便调式,这时候就需要把错误信息打印出来 在请求接口错误函数中将obj转换成字符串,再用一个弹窗显示出来... 代码如下: fail: function(res) { wx.showToast({ title: JSON.stringify(res), icon: 'success', duration: 2000 }) } 其中res.errMsg存放的是请求出错的原因,如果请求成功存放的是ok

查看Linux系统版本和内核信息

Linux 查看Linux系统版本信息 1. 查看内核版本 1) 方法一:登录到linux执行cat /proc/version [[email protected]_32bit_ip12 ~]$ cat /proc/version  Linux version 2.6.18-194.el5 ([email protected]) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)) #1 SMP Fri Apr 2 14:58:35 EDT 2010 

Linux命令之lsb_release - 查看当前系统的发行版信息

用途说明 lsb_release命令用来查看当前系统的发行版信息(prints certain LSB (Linux Standard Base) and Distribution information.).有了这个命令就可以清楚的知道到底是RedHat的.还是别的发行版,还有具体的版本号,比如3.4还是5.4等等.有些系 统上不一定安装了这个命令,可以通过查看/etc/issue文件得到发行版信息. 常用参数 格式:lsb_release 格式:lsb_release -v 查看LSB本身的