摘要:
1.While deploying a new application module, the software vendor ships the application software along with appropriate SQL plan baselines for the new SQLs being introduced. Which two statements desc... 阅读全文
摘要:
最后更新时间: 2014年4月13日,星期日存储过程分为两种,即DR(Definer's Rights ) Procedure和IR(Invoker's Rights ) Procedure。为什么会有两种存储过程呢?比如说用户user02创建了修改表t1的存储过程,当用户user01调用时,是修改的user01自己的t1表还是user02的t1表? 示例:用户user02将存过赋执行权限给use... 阅读全文
摘要:
更新时间:2014年4月12日,星期六oracle支持正则表达式函数regexp_likeregexp_substrregexp_instrregexp_replace示例:createtablenamet1(varchar2(10));insertintot1values('AAAA');insertintot1values('BBB');insertintot1values('ABBB');i... 阅读全文
摘要:
更新时间:2014年4月12日 7:59:39★发生CKPT场景1. Consistent database shutdown,如: shutdown IMMEDIATE2. Online Redo log 切换时3. ALTER SYSTEM CHECKPOINT4. ALTER DATABASE BEGIN BACKUP5. Tablespace and data file checkpoin... 阅读全文
摘要:
Statement 1: SELECT employee_id, last_name, job_id, manager_id FROM employees START WITH employee_id = 101 CONNECT BY PRIOR employee_id = manager_id AND manager_id != 108 ; Statement 2: SELECT em... 阅读全文
摘要:
测试表: create table products(prod_id number(10), prod_name varchar(20)); create index idx_products_1 on products(upper(prod_name)); SQL> select upper(prod_name) from products a ; Execution Plan... 阅读全文
摘要:
教程:http://www.hikvision.com/cn/support_more.asp?id=224一. 配置路由器192.168.1.1转发规则 --> UPnP设置 --> 开启二. 配置录像机http://192.168.1.102设备参数 --> 基本信息 --> 设备序列号配置网络:网络配置 --> TCP/IP 配置默认网关 (192.168.1.1)首选DNS: 8.8.8.8备用DNS: 8.8.4.4配置DDNS启用DDNS --> 保存访问: www.hik-online.com帮客户注册用户名/密码录像机192.168.1.10 阅读全文
摘要:
http://jingyan.baidu.com/article/f3ad7d0fc0992e09c2345b51.html使用 powercfg -h off 清理文件Hiberfil.sys ,马上恢复4G多空间.不过还有7G空间不清楚什么用掉了,怎么统计都统计不出来.对于SysWOW64 文件... 阅读全文
摘要:
远程执行脚本 !/bin/bashhost2="13.22.64.56" ssh $host2 >/dev/null 2>&1 /dev/null 2>&1 & exit EOFecho "Done!" nohup行说明 如果 >/dev/null 2>&1 & 未加,则本地主机一定要等待远端脚本执行完成,才会结束. 阅读全文
摘要:
#!/bin/bashsource $HOME/.bash_profiletoday=`date +%Y%m%d`workdir=$HOME/scripts/bak/proc/proc_bak=$HOME/scripts/bak/proc/proc_bak_$todaycd $workdirsqlplus -S tpss/AAA@orcl <<EOF set feedback off set ve... 阅读全文