ERROR: ORA-09925: Unable to create audit trail file Linux-x86_64

今天手工建库的过程中遇到了这么个错误

ERROR:

ORA-09925: Unable to create audit trail file

Linux-x86_64 Error: 2: No such file or directory

Additional information: 9925

ORA-01075: you are currently logged on

[[email protected] dbhome_1]$ ps -ef | grep smon

oracle   11903     1  0 22:18 ?        00:00:00 ora_smon_manual

oracle   12485  1690  0 22:28 pts/1    00:00:00 grep smon

[[email protected] dbhome_1]$ kill -9 11903

[[email protected] dbhome_1]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.4.0 Production on 星期六 3月 11 22:28:41 2017

Copyright (c) 1982, 2013, Oracle.  All rights reserved.

已连接到空闲例程。

SQL>

其实就是oracle 提示你已经登录了。杀掉重新登录就好了

注意:这种ORA-09925 报错的原因有很多,具体得看实际情况来定

时间: 2024-12-16 06:51:26

ERROR: ORA-09925: Unable to create audit trail file Linux-x86_64的相关文章

ORA-09925: Unable to create audit trail file 在DBCA时

ORA-09925: Unable to create audit trail file 在DBCA时 ***数据库后,再执行dbca时候报错 ORA-09925: Unable to create audit trail file  起初以为是权限问题, $cd $ORACLE_HOME/rdbms/audit 查看下权限,属主,为了避免麻烦直接赋予aufit目录 777权限 退出DBCA直接们再次执行,问题依旧 ORA-09925: Unable to create audit trail 

python pip fatal error in launcher unable to create process using

用pip安装一个包,不知道为啥,就报了这个错误:python pip fatal error in launcher unable to create process using “” 百度了一下,用下面的命令可以解决,搞定 python2 -m pip install XXX  另外,Python3 的pip我用python3 -m pip install --upgrade pip 搞定

File upload error - unable to create a temporary file

php上传图片的时候会报错: File upload error - unable to create a temporary file 文件上传错误 - 无法创建一个临时文件 你只需要打开你的php.ini文件,设置upload_tmp_dir="f:\temp"  然后重启环境就可以了,如果还不行就去看看文件夹的权限是否有权限,赋予写入权限就好了

002-Fatal error in launcher: Unable to create process using '""

这个问题出在先安装Python3之后再安装python2, 使用pip安装的时候出现的故障 原因是python3的环境变量写入在了用户的环境变量上 但是一旦安装python2之后, Python会把信息写到系统环境变量上 此时使用pip就会出现Fatal error in launcher: Unable to create process using '"" 解决办法: 将python3的信息加入到系统环境变量中   002-Fatal error in launcher: Unab

【python】win10中python3.5.2输入pip出现Fatal error in launcher: Unable to create process using '"'

系统:windows 10 python版本:3.5.2 出现的错误如下: C:\Users\zhuxy>pip list Fatal error in launcher: Unable to create process using '"' 尝试的解决办法: C:\Users\zhuxy>python -m pip install package Collecting package Downloading package-0.1.1.tar.gz Complete output

pip运行报错Fatal error in launcher: Unable to create process using pip.exe

使用pip的时候报错Fatal error in launcher: Unable to create process using pip.exe 解决办法,升级pip python -m pip install -U pip 或者 python -m pip install --upgrade pip

PHP Warning: File upload error - unable to create a temporary file in Unknown on line 0

代码在本地运行一切都OK,放到服务器上,网站访问正常,上传就出现该错误. 提示:PHP Warning: File upload error - unable to create a temporary file in Unknown on line 0 出现问题的服务器:Windows server 2012 Standard iis8 php5.5.37 fastCGI 原因:原来是在配置php环境的时候,php.ini没有设置upload_tmp_dir . 如果 php.ini 没有设置

python多版本配置后使用pip出现 Fatal error in launcher: Unable to create process using '"'

上一篇刚介绍了python的多版本环境配置,然后再我把python2的python.exe改成python2.exe之后,python2的pip就不好使了,出现了如题的错误... 然后解决办法也很简单,虽然略麻烦了一些 输入 python2 -m pip install XXX即可,上图: 这里numpy我已经装过了,所以这样显示,正常应该就是collecting XXXXX python多版本配置后使用pip出现 Fatal error in launcher: Unable to creat

使用报错:Fatal error in launcher: Unable to create process using '"'

在一个系统中共存Python2.python3的时候,pip.pip2.pip3使用的时候会报错: c:\Python35\Scripts>pip3Fatal error in launcher: Unable to create process using '"' 解决方法: python3: python3 -m pip install --upgrade pip python2: python2 -m pip install --upgrade pip 注意:python2, pyt