自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (10)
  • 收藏
  • 关注

原创 240个国外SQL Server高手的博客集萃

Aaron BertrandAdam MachanicAll Things SQL ServerAllen Kinsel - SQL DBAAllen WhiteAmit Bansal writes...Andrew Fryers BlogAndrew KellyAndy LeonardAnything and Everything ITArcane CodeArnie Rowland: Ram

2009-12-31 10:44:00 1295

原创 诺贝尔文学奖获得者吉卜林写给儿子的一首诗《如果》(IF...)英汉对照

《如果》诺贝尔文学奖得主吉卜林写给他儿子的一首诗                                                              如 果                           如果在众人六神无主之时                           你能镇定自若而不是人云亦云                         

2009-12-30 10:46:00 4868

转载 SQL Server2008中生成脚本和数据的功能

在SQL Server2008的新特性中有一个可以生成表的create脚本并同时生成插入表数据的脚本的功能。具体参看: http://www.databasejournal.com/features/mssql/article.php/3852881/article.htm  

2009-12-29 14:20:00 907

原创 一条语句返回一个数据库中所有表的空间使用情况

 USE  db_name>sp_MSforeachtable  @command1=EXEC sp_spaceused ?,@whereand=or OBJECTPROPERTY(o.id, NIsSystemTable) = 1-----改进版IF  EXISTS

2009-12-29 14:02:00 695

原创 88个英语常用搭配

     1.经济的快速发展 the rapid development of economy   2.人民生活水平的显著提高/ 稳步增长the remarkable improvement/ steady growth of people’s living standard   3.先进的科学技术 advanced science and technology   4.面临新的机遇和挑战 be

2009-12-24 16:49:00 948

原创 Truncate Table和Delete的简单比较 Truncate怎么了?

use tempdb;SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE TABLE [dbo].[Table1]( [ID] [uniqueidentifier] NOT NULL, [Name] [nvarchar](128) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,PRIMARY KE

2009-12-23 09:27:00 838

原创 当心T-SQL中COLLATE的陷阱

在SQLServer中用户可以在Server,数据库,表字段(列)和表达式级别定义字符集的类型。如果下一级没有定义字符集类型,则SQL Server会默认为上一级字符集类型。 举例如下:  declare  @Users table (  UserName nvarchar(255) collate SQL_Latin

2009-12-16 13:32:00 1753

关于SQL注入的资料-3

关于SQL注入的资料-3,讲解常见的sql注入攻击及其防范

2009-05-08

关于SQL注入的资料-2

关于SQL注入的资料-2,讲述sql注入高级技巧

2009-05-08

关于SQL注入的资料-1

关于SQL注入的资料-1,讲述如何通过sql注入操纵SQL Server

2009-05-08

一个Windows界面的TableDiff表比较工具

一个Windows界面的TableDiff表比较工具,可比较表记录差异

2009-04-16

SQL Server DBA best practice

SQL Server DBA best practice by EMC2

2009-04-14

SQL Server 执行计划详解

SQL Server 2005 执行计划详解

2009-04-10

戏说面向对象程序设计C#版.pdf

戏说面向对象程序设计C#版,语言幽默风趣很适合初学者入门面向对象编程。

2009-04-03

SQL Server2005微软认证教材

MCTS Self-Paced Training Kit (Exam 70-431) - Microsoft SQL Server 2005 Implementation and Maintenance

2009-04-03

C# 多线程编程 详解

This book provides an introduction to writing concurrent programs with “threads”. A threads facility allows you to write programs with multiple simultaneous points of execution, synchronizing through shared memory. The paper describes the basic thread and synchronization primitives, then for each primitive provides a tutorial on how to use it. The tutorial sections provide advice on the best ways to use the primitives, give warnings about what can go wrong and offer hints about how to avoid these pitfalls. The paper is aimed at experienced programmers who want to acquire practical expertise in writing concurrent programs. The programming language used is C#, but most of the tutorial applies equally well to other languages with thread support, such as Java.

2009-04-03

C# 技术面试 宝典

C# 技术面试 宝典 What methods are fired during the page load? Init () When the page is instantiated, Load() - when the page is loaded into server memory,PreRender () - the brief moment before the page is displayed to the user as HTML, Unload() - when page finishes loading.

2009-04-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除