From 2d151edd17f27eb0912c7a5c34844582129f2491 Mon Sep 17 00:00:00 2001 From: iProbe Date: Wed, 24 May 2023 15:01:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20'=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93/oracle/ORA-03113-=E9=80=9A=E4=BF=A1=E9=80=9A=E9=81=93?= =?UTF-8?q?=E7=9A=84=E6=96=87=E4=BB=B6=E7=BB=93=E5=B0=BE.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 数据库/oracle/ORA-03113-通信通道的文件结尾.md | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 数据库/oracle/ORA-03113-通信通道的文件结尾.md diff --git a/数据库/oracle/ORA-03113-通信通道的文件结尾.md b/数据库/oracle/ORA-03113-通信通道的文件结尾.md new file mode 100644 index 0000000..c70aee7 --- /dev/null +++ b/数据库/oracle/ORA-03113-通信通道的文件结尾.md @@ -0,0 +1,24 @@ +### 1.set db_recovery_file_dest_size big +```sql +shutdown abort +startup mount +show parameter db_recovery_file_dest_siz +alter system set db_recovery_file_dest_siz=5G scope=both; +``` +### 2.delete archivelog +```sql +startup mount +``` +```shell +rman target / +``` +```sql +crosscheck archivelog all; +# 无删除提示 +delete noprompt archivelog until time 'sysdate-1'; +# 无提示强制删除昨天之前的日志 +delete noprompt force archivelog until time 'sysdate -1'; +``` +```sql +alter database open; +``` \ No newline at end of file