ORA-01511: error in renaming log/data files ORA-01121: cannot rename database file <string> - file is in use or recovery ORA-01110: data file <string>: ‘datafile.dbf’To properly move the datafile around or rename the datafile, follow this guide: 1. Login to SQLPlus. 2. Connect as SYS DBA with CONNECT / AS SYSDBA command. 3. Shutdown the database instance with SHUTDOWN command. 4. Rename or/and move the datafiles at operating system level. 5. Start Oracle database in mount state with STARTUP MOUNT command. 6. Modify the name or location of datafiles in Oracle data dictionary using following command syntax:
ALTER DATABASE RENAME FILE ‘<fully qualified path to original data file name>’ TO ‘<new or original fully qualified path to new or original data file name>’;7. Open Oracle database instance completely with ALTER DATABASE OPEN command. If the datafiles that need to be changed or moved do not belong to SYSTEM tablespaces, and do not contain active rollback segments or temporary segments, there is another workaround that does not require database instance to be shutdown. Instead, only the particular tablespace that contains the date files is taken offline. 1. Login to SQLPlus. 2. Connect as SYS DBA with CONNECT / AS SYSDBA command. 3. Make offline the affected tablespace with ALTER TABLESPACE <tablespace name> OFFLINE; command. 4. Modify the name or location of datafiles in Oracle data dictionary using following command syntax:
ALTER TABLESPACE <tablespace name> RENAME DATAFILE ‘<fully qualified path to original data file name>’ TO ‘<new or original fully qualified path to new or original data file name>’;5. Bring the tablespace online again with ALTER TABLESPACE alter tablespace <tablespace name> ONLINE; command.
Copyright - GNU General Public License
(C) June 2008, manivelcode
2 comments:
Mani,
off-topic, but I'm also using blogger and would like to know how you make it work that you get this nice layout for your code snippets in your posts (I mean the box around and obviously keeping spaces etc.).
I'm not aware of any such functionality when creating posts in the blogger environment, could you share this information how to do it?
Regards,
Randolf
Randolf,
Sorry for belated reply, actually past days i didn't come internet.
ok. You can customize template as like you want under LAYOUT tab in your blogger.
This will guide you.
http://help.blogger.com/bin/answer.py?answer=46870
Hope above one help you.
Post a Comment