- 论坛徽章:
- 0
|
请教一个关于oracle一进程被锁,如何解锁?谢谢各位了!
use "select * from v$backup;" to check if there is any files that are in the backup mode.
be sure to use "oerr" to check the error messages that can tell you more. you can always use "shutdown abort" to shut it down. but after that you will need to "alter tablespace xxx end backup" to end the backup.
rhas3:/u01/product/9204/rdbms>; oerr ora 01149
01149, 00000, "cannot shutdown - file %s has online backup set"
// *Cause: An attempt to shutdown normally found that an online backup is
// still in progress.
// *Action: End the backup of the offending tablespace and retry this command. |
|