?? 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 + -