2017年3月2日
摘要: 模板路径:C:\Users\dell\AppData\Roaming\pandoc\templates 命令: C:\Users\dell\AppData\Local\Pandoc\pandoc -s --toc --columns=10000 --toc-depth=5 --self-contained demo.md –o demo.html 阅读全文
posted @ 2017-03-02 18:32 思静 阅读(201) 评论(0) 推荐(0) 编辑
  2017年2月17日
摘要: 1. 启动时发生以下错误 2. 执行如下语句 alter system set control_files='E:\APP\ADMINISTRATOR\FLASH_RECOVERY_AREA\ORCL\CONTROL02.CTL' scope=spfile; startup 3. 执行上面语句后出现 4. 执行如下语句 select * from v$log; select ... 阅读全文
posted @ 2017-02-17 10:26 思静 阅读(261) 评论(0) 推荐(1) 编辑
  2016年10月18日
摘要: for /r "F:\Temp" %%a in (*.bat) do echo %%a>>.\list.txt 阅读全文
posted @ 2016-10-18 16:29 思静 阅读(183) 评论(0) 推荐(0) 编辑
  2016年5月17日
摘要: select file#,name,status from v$datafile; select * from v$tablespace; 1. alter tablespace AAA offline; 2. shutdown immediate; 3. copy data file to Destination directory 4. startup mount; alt... 阅读全文
posted @ 2016-05-17 18:58 思静 阅读(317) 评论(0) 推荐(0) 编辑
  2016年5月13日
摘要: function functionName(){ var list=new Array(); $("td.classA").each(function(){ list.push($(this).attr('id')); }); if(list.length > 0){... 阅读全文
posted @ 2016-05-13 10:06 思静 阅读(285) 评论(0) 推荐(0) 编辑
  2016年5月12日
摘要: CREATE OR REPLACE FUNCTION fn_md5_utf16le (InputString IN VARCHAR2) RETURN VARCHAR2 IS retval varchar2(50); /******************************************************* 用途: 获取字符串对应的MD5值 *... 阅读全文
posted @ 2016-05-12 15:03 思静 阅读(406) 评论(0) 推荐(0) 编辑
  2016年5月3日
摘要: 1. 需要在APP服务器上安装Office 2. 可能需要创建文件夹:Desktop C:\Windows\SysWOW64\config\systemprofile\Desktop 3. 可能需要设置权限 component service,中找到 “Microsoft Office ….”中的属 阅读全文
posted @ 2016-05-03 19:21 思静 阅读(707) 评论(0) 推荐(0) 编辑
摘要: # WinNT MPM # ThreadsPerChild: constant number of worker threads in the server process # MaxRequestsPerChild: maximum number of requests a server process serves ThreadsPerChild 1024 ... 阅读全文
posted @ 2016-05-03 11:59 思静 阅读(412) 评论(0) 推荐(0) 编辑
  2016年1月28日
摘要: ipconfig tracert -d 192.168.1.55 route add [IP] mask [Mask] [Gateway] route add 192.168.1.88 mask 255.255.255.0 192.168.1.1 ping 192.168.1.55 阅读全文
posted @ 2016-01-28 17:28 思静 阅读(162) 评论(0) 推荐(0) 编辑
  2016年1月13日
摘要: create or replace procedure SP_Change_Sequence_Num(table_name_in varchar2, pk_name_in varchar2, is_positive_growth_in number) is /*********************************************************** ... 阅读全文
posted @ 2016-01-13 12:01 思静 阅读(433) 评论(0) 推荐(0) 编辑