省得
oracle11G在linux环境下的卸载操作
1.使用SQL*PLUS停止数据库[oracle@OracleTest oracle]$ sqlplus /nologSQL> connect / as sysdbaSQL> shutdown [immediate]SQL> exit2.停止Listener[oracle@OracleTest oracle]$ lsnrctl stop3.停止HTTP服务[root@Oracle...
linux下删除oracle11g单实例的方法
linux下删除oracle11g单实例的⽅法⽅法⼀:使⽤oracle⾃带的runInstaller 卸载:[oracle@localhost /]$ cd /opt/oracle/product/11.2.0/dbhome_1/deinstall/[oracle@localhost deinstall]$ export LANG=en[oracle@localhost deinstall]$ ....
shellfor循环1到100
shellfor 循环1到100⽤bash shell 写程序时,经常会⽤到for 循环,特别是从1到100这种需求,这⾥记录⼏种shell 中从1到100的循环⽅法⽅法类c 语⾔in 使⽤seq 使⽤shell代码作⽤代码记录⼀下总是遗忘的shell 语法,省得每次都去百度[html]01. for ((i =1; i <=100; i ++)) 02. do 03...