摘要:
1.创建索引 CREATE INDEX index_telephone ON tab_personinfo(telephone); --单一索引 CREATE INDEX index_telephone_custid on tab_personinfo(telephone,custid); --复合 阅读全文
摘要:
linux服务器上以dba身份进入(如果登录失败,查看SID是否设置):sqlplus / as sysdba; 依次执行以下命令:shutdown immediate;startup mount;alter system enable restricted session;alter system 阅读全文
摘要:
方法1:while循环中执行效率最高,最常用的方法。 function while_read_LINE_bottm(){ While read LINE do echo $LINE done < $FILENAME } #!/bin/bash while read line do echo $lin 阅读全文