|
It looks like your datafile is missing or cannot be found. Verify that the /home2/oracle/oradata/orcl/ directory is available on your server and that the 'oracle' user can read and write to it.
Since this datafile is for your temp tablespace, you have not lost any data. You can restore this file from your backup, or you can start the database without it using these steps:
- STARTUP MOUNT (mount the database)
- ALTER TABLESPACE temp OFFLINE;
- DROP TABLESPACE temp;
- ALTER DATABASE OPEN;
- Recreate the tablespace.
|