📄 ins_cc1
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -