摩尔定律是由英特尔(Intel)创始人之一戈登·摩尔(Gordon
Moore)提出来的。其内容为:当价格不变时,集成电路上可容纳的晶体管数目,约每隔18个月便会增加一倍,性能也将提升一倍。换言之,每一美元所能买到的电脑性能,将每隔18个月翻一倍以上。这一定律揭示了信息技术进步的速度。
尽管这...
分类:
其他好文 时间:
2014-05-12 14:20:52
阅读次数:
244
1) 如何将一个数据表从A 文件组移动到
B文件组中--要点:只需将聚集索引建立在需要移动的数据组中,数据页面也会随之移动到对应的文件组中--创建数据表 CREATE TABLE tb(id INT
,cname NVARCHAR(4000)) ON [FG_A] GO --INSERT DATA....
分类:
数据库 时间:
2014-05-12 12:57:35
阅读次数:
339
MongoDB出现 { code: 18, ok: 0.0, errmsg: "auth fails"
} 错误的原因:1.账号密码错误2.账号不属于该数据库
分类:
数据库 时间:
2014-05-10 23:50:35
阅读次数:
2572
1 ; *** Inno Setup version 5.5.0+ Chinese messages
*** 2 ; 3 ; To download user-contributed translations of this file, go to: 4 ;
http://www.jrso...
分类:
其他好文 时间:
2014-05-10 18:55:59
阅读次数:
614
Crossing River
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 10218
Accepted: 3859
Description
A group of N people wishes to go across a river with only...
分类:
其他好文 时间:
2014-05-09 14:51:43
阅读次数:
257
实例1:updateUSE [数据库名称]GO/****** Object: Trigger
[dbo].[触发器名称] Script Date: 05/08/2014 12:40:25 ******/SET ANSI_NULLS ONGOSET
QUOTED_IDENTIFIER ONGO...
分类:
数据库 时间:
2014-05-09 10:50:54
阅读次数:
481
一、常用编译相关的快捷键1、编译(单个文件) Ctrl+F72、连接 F73、运行
Ctrl+F5二、常用调试相关的快捷键1、GO(全速运行) F52、Stop Debuging(停止运行) Shift+F53、Restart(重新运行)
...
分类:
编程语言 时间:
2014-05-09 10:22:09
阅读次数:
287
CommandActionNotesvim file +54open file and go to
line 54any : command can be run using + on command linevim -O file1 file2open
file1 and file2 side b...
分类:
其他好文 时间:
2014-05-09 10:15:18
阅读次数:
420
1.汇编语言实现,汇编和链接器分别为as86和ld86。代码如下:
.globl begtext,begdata,begbss,endtext,enddata,endbss
.text
begtext:
.data
begdata:
.bss
begbss:
.text
BOOTSEG=0x7c0
entry start
start:
jmpi go,BOOTSEG
go:
mov ax,...
分类:
其他好文 时间:
2014-05-09 06:29:56
阅读次数:
365
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON
GOCREATE PROCEDURE [dbo].[UP_GetRecordByPage] @tblName varchar(255), -- 表名
@fldName varchar(255),...
分类:
其他好文 时间:
2014-05-08 23:36:12
阅读次数:
409