原文:01. 把存储过程结果集SELECT INTO到临时表在开发过程中,很多时候要把结果集存放到临时表中,常用的方法有两种。一. SELECT INTO 1. 使用select into会自动生成临时表,不需要事先创建select * into #temp from sysobjectsselec...
分类:
其他好文 时间:
2014-06-25 23:38:09
阅读次数:
362
gc d:\vm.txt|foreach -begin {write-host "It's beginning."} -process {$_ +"aa"} -end {write-host "The end"}
分类:
其他好文 时间:
2014-06-25 22:50:17
阅读次数:
243
(FileStream、StreamWriter 、StreamReader 、File、FileInfo、Directory、DirectoryInfo、Path、Encoding)C#文件与流(FileStream、StreamWriter 、StreamReader 、File、FileInf...
分类:
其他好文 时间:
2014-06-25 22:36:54
阅读次数:
262
###How to qulick start Like virtual memory,before closing system,win8 write kernel dialog to a file named hiberfil.sys so ,it just write hiberfil.sy.....
今天来粗略的学习一下js JavaScript:写入 HTML 输出 document.write("This is a heading"); JavaScript:对事件作出反应 点击这里 JavaScript:改变 HTML 内容 function myFunction() ...
分类:
其他好文 时间:
2014-06-24 12:46:57
阅读次数:
193
1.document.write(""); 输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)5...
分类:
编程语言 时间:
2014-06-22 12:26:07
阅读次数:
214
转载请注明出处:http://www.openext.org/2014/06/libvirt-error1在编译配置libvirt12.2时如果prefix不是usr目录,在使用libvirt创建VM则会出现ERROR:internal error Unable to locate libvirtd daemon in $PATH即便libvirtd所在目录已经加入了PATH。本人认为这是libv...
分类:
其他好文 时间:
2014-06-22 11:18:08
阅读次数:
260
题目:
Given a binary tree containing digits from 0-9 only, each root-to-leaf
path could represent a number.
An example is the root-to-leaf path 1->2->3 which represents the number 123.
Find...
分类:
其他好文 时间:
2014-06-22 08:30:24
阅读次数:
236
在Bootstrap中使用
$url = constant ( "APPLICATION_PATH" ) . DIRECTORY_SEPARATOR . 'configs' . DIRECTORY_SEPARATOR . 'application.ini';
$dbconfig = new Zend_Config_Ini ( $url, "mysql" );
// $db = Zen...
分类:
数据库 时间:
2014-06-22 07:52:08
阅读次数:
205
from:unix高级环境编程
unix/linux中共享内存是最高效的ipc方式。
有几种使用方式:
1)mmap /dev/zero设备:
fd = open("/dev/zero", O_RDWR);
area = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
close(fd);
加入MAP_SHARE...
分类:
其他好文 时间:
2014-06-22 06:21:16
阅读次数:
215