Create Table Space for TBS_USER_IDX
create tablespace TBS_USER_IDX
datafile'C:\app\oracle\oradata\orcl\TBS_USER_IDX.dbf'size 128m
autoextend on next 16m maxsize 1024m;
The error is
ORA-01119: Error creating database file 'C:\app\oracle\oradata\orcl\TBS_USER_IDX.dbf'.
ORA-27040: Error creating file, unable to create file
error in creating database file '%s'"
*Cause—Usually due to not having enough space on the device.
What should I do?
sql oracle
The following steps have been used to resolve the issue.
This post was posted as a community wiki based on @user25636's comments.
The error message can be read as "Do you have enough free space?" but it is just an example of the cause.There are other possible reasons why the file cannot be created, so check the following:
© 2024 OneMinuteCode. All rights reserved.