创建/删除数据库if object_id(N'mytest') is not nulldrop DATABASE mytest;GOcreate DATABASE mytest ;go查看数据库use mytest;select name, size, size*1.0/128 AS [Size i...
分类:
数据库 时间:
2014-09-09 15:04:48
阅读次数:
193
To use debug, just insert " require 'debug' " in which you want to debug.you can list code piece with list command, and user 'n' command to execute ne...
分类:
其他好文 时间:
2014-09-09 12:02:48
阅读次数:
220
Techniques for configuring ahypervisorschedulerto make use of cache topology of processors and physical memory distances between NUMA nodes when makin...
分类:
其他好文 时间:
2014-09-09 11:31:48
阅读次数:
296
处理string list在一个string list中用正则表达式查找查找第一个匹配到的元素:> (set 'l '("WARNING: org.apache.hadoop.metrics.jvm.EventCounter is deprecated. Please use org.apache.hadoop.log.metrics.EventCounter in all the log4j...
分类:
其他好文 时间:
2014-09-07 23:52:36
阅读次数:
410
WebGrid with filtering, paging and sorting by Jose M. Aguilar on April 24, 2012 in Web Development A few days ago I received some questions on the use...
分类:
Web程序 时间:
2014-09-07 23:46:35
阅读次数:
395
转载自:http://blog.csdn.net/xw13106209/article/details/66192851.错误描述2011-7-20 11:05:18 org.apache.catalina.core.StandardServer await严重: StandardServer.aw...
分类:
其他好文 时间:
2014-09-07 23:38:55
阅读次数:
384
microlib与缺省C库之间的主要差异是:microlib不符合ISOC库标准。不支持某些ISO特性,并且其他特性具有的功能也较少。microlib不符合IEEE754二进制浮点算法标准。microlib进行了高度优化以使代码变得很小。无法对区域设置进行配置。缺省C区域设置是唯一可用的区域设置。不...
分类:
其他好文 时间:
2014-09-07 13:30:45
阅读次数:
216
很有用的command ,自己写软件可以用到了very goodYou can use command-line parameters to change CCleaner's installation behavior, or to change how CCleaner runs.Command...
分类:
其他好文 时间:
2014-09-07 12:14:05
阅读次数:
550
原文:09. 约束与索引的联系之所以把约束和索引放到一起来看,主要是因为主键约束和唯一键约束,它们会自动创建一个对应的索引,先分别看下数据库中的几个约束。
一 约束
在关系型数据库里,通常有5种约束,示例如下: use tempdb
go
create table s
(
sid varchar(2...
分类:
其他好文 时间:
2014-09-06 12:14:33
阅读次数:
239
What is SQLite? SQLite is light-weight RDBMS, it is use the file system rather than the C/S client, it is written by C and was widely used in the embe...
分类:
数据库 时间:
2014-09-06 10:56:53
阅读次数:
356