📄 move_physical.sh.txt
字号:
#!/usr/bin/ksh################################################################################# Module: move_physical.sh# Author: Peter R. Schmidt# Description: Move the physical log and change it's size## Change Log## Date Name Description.................# 06/21/00 Peter R. Schmidt Start Program################################################################################echoecho "What size do you want for the new physical log ? (in kbytes)"echo "Note: it must be slightly smaller then the size of the dbspace"echo "that it will reside in)."read NEW_SIZEechoecho "What DBSPACE will the physical log reside in ?"read NEW_DBSPACEecho echo "New size: $NEW_SIZE kbytes"echo "New DBSPACE: $NEW_DBSPACE"echoecho "Press <Enter> to continue <INTERRUPT> to quit"read answer###############################################################################onmode -uysleep 5onparams -p -s $NEW_SIZE -d $NEW_DBSPACE -ysleep 5onmode -m
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -