码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
TSQL 常用语句
创建/删除数据库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
ruby_debug笔记
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
Hypervisor scheduler
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在一个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 【转】
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
Address already in use: JVM_Bind(端口冲突)
转载自: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
MDK中 use microlib
microlib与缺省C库之间的主要差异是:microlib不符合ISOC库标准。不支持某些ISO特性,并且其他特性具有的功能也较少。microlib不符合IEEE754二进制浮点算法标准。microlib进行了高度优化以使代码变得很小。无法对区域设置进行配置。缺省C区域设置是唯一可用的区域设置。不...
分类:其他好文   时间:2014-09-07 13:30:45    阅读次数:216
ccleaner Command-line parameters
很有用的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. 约束与索引的联系
原文:09. 约束与索引的联系之所以把约束和索引放到一起来看,主要是因为主键约束和唯一键约束,它们会自动创建一个对应的索引,先分别看下数据库中的几个约束。 一 约束 在关系型数据库里,通常有5种约束,示例如下: use tempdb go create table s ( sid varchar(2...
分类:其他好文   时间:2014-09-06 12:14:33    阅读次数:239
First 5 minutes of SQLite
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!