Home > Database > Mysql Tutorial > 【oracle案例】创建表空间时遇到 ORA-01119,0RA-27040,0SD-04002

【oracle案例】创建表空间时遇到 ORA-01119,0RA-27040,0SD-04002

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 15:08:43
Original
5513 people have browsed it

代码如下 CREATE TEMPORARY TABLESPACE oracle89_temp TEMPFILE 'D:/oracle/prodect/10.2.0/oradata/oracle8/programming8_temp.dbf' size 10m autoextend on; 错误提示如下 在行 1 上开始执行命令时出错: CREATE TEMPORARY TABLESPACE oracle89_temp TEMPFI

代码如下

CREATE TEMPORARY TABLESPACE oracle89_temp
TEMPFILE 'D:/oracle/prodect/10.2.0/oradata/oracle8/programming8_temp.dbf'
size 10m
autoextend on;

 

错误提示如下

在行 1 上开始执行命令时出错:
CREATE TEMPORARY TABLESPACE oracle89_temp
TEMPFILE 'D:/oracle/prodect/10.2.0/oradata/oracle8/programming8_temp.dbf'
size 10m
autoextend on
命令出错, 行: 1 列: 0
错误报告:
SQL 错误: ORA-01119: 创建数据库文件 'D:/oracle/prodect/10.2.0/oradata/oracle8/programming8_temp.dbf' 时出错
ORA-27040: 文件创建错误, 无法创建文件
OSD-04002: unable to open file
O/S-Error: (OS 3) ?????????????????  --此处为 “系统找不到指定的路径”
01119. 00000 -  "error in creating database file '%s'"
*Cause:    Usually due to not having enough space on the device.
*Action:

 

 

在O/S-Error:(OS 3)处的错误提示,由于使用的PL/SQL DEVELOPER 的提示有乱码,没有即时发现问题所在。

根据PL/SQL DEVELOPER的提示可知,可能是因为 “在设备上没有足够的空间” ,实际上却又10多G的空间。

 

又调试了几次,最后终于发现是因为文件目录有错误,

实际目录为'D:/oracle/product/10.2.0/oradata/oracle8/programming_temp.dbf'

而我在写指令的时候,错误的把 product打成了prodect,所以提示O/S-Error:(OS 3) 系统找不到指定的路径。



PS:O/S-Error:(OS 3)系统找不到指定的路径,此时需要检查.DBF的路径是否存在。如果不存在,需要建立路径。

      ORA-01119错误是由于设备上没有足够的空间,此时需要考虑目录所在硬盘是NTFS还是FAT32格式,在FAT32格式下,

      不能创建超过4G大小的数据文件      

 

ORA-01119: error in creating database file "string"

Cause: Usually due to not having enough space on the device.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template