ins_cc1

来自「数据库手册指导说明」· 代码 · 共 21 行

TXT
21
字号
# file:  ins_cc1 - svrmgrl version
# Korn shell script
#
# This script is run once daily to insert records into the CC1 database
# recording the space usage of the databases listed in inserts.sql
# file called by this file.  New databases need to have new
# links created in CC1 and have to have entries in the inserts.sql 
# script.
#
ORACLE_HOME=/orasw/v7;export ORACLE_HOME
ORACLE_SID=cc1; export ORACLE_SID
PATH=$PATH:$ORACLE_HOME/bin; export PATH
cd /orasw/dba/CC1
svrmgrl <<EOF
connect internal
startup;
!sqlplus / @inserts
shutdown
EOF

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?