Home > Oracle, Recovering From Login Problem > ORA-1113 signalled during: alter database open

ORA-1113 signalled during: alter database open

The ORa-1113 error means that your Backup implementation (“Retrospect”) does an ALTER TABLESPACE BEGIN BACKUP and END BACKUP for each tablespace.

In 8i, you would not have the “ALTER DATABASE END BACKUP” command. Nor the “ALTER DATABASE DATAFILE .. END BACKUP”.

What you would do is :

1. Start the service.
2. Go to Windows command line prompt as the Administrator or account in the OS_DBA group (with the right ORACLE_SID, ORACLE_HOME and PATH)
3. sqlplus / as sysdba
4. startup mount — or ALTER DATABASE MOUNT if it did get started but not mounted
5. ALTER TABLESPACE (tablespacename_that_was_in_backup_mode) END BACKUP ;
(if there were multiple tablespaces in backup mode, issue the END BACKUP for each one of them)
6. ALTER DATABASE OPEN ;

The other option to step 5 is the “RECOVER DATABASE” . Oracle may apply archivelogs to synchronise the datafiles back.

Advertisement
  1. No comments yet.
  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.