自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 玫瑰虽美,当心其刺;CTE虽好,注意其规则

本文提醒大家在CTE使用中注意其规则,尤其是下面比较容易忽视的规则,注意是“必须跟随”: CTE 之后必须跟随引用部分或全部CTE 列的一条SELECT、INSERT、UPDATE、MERGE 或DELETE --语句。也可以在CREATE VIEW 语句中将CTE 指定为视图中SELECT 定义语句的一部分。

2010-07-30 15:22:00 870

原创 《软件随想录》一书的目录及感想

《软件随想录》一书的目录及感想。

2010-07-30 14:21:00 868

原创 使用Cross Apply和Outer Apply关联表值函数中的字段

T-SQL中Cross Apply和Outer Apply关联表值函数的用法

2010-07-29 18:45:00 1523

原创 对爱词霸(iciba)生词本功能的一些建议

对爱词霸(iciba)生词本功能的一些建议

2010-07-26 17:21:00 2294 1

原创 SQL Server二进制聚合运算性能的研究

本文分析了常见的对SQL Server整形数据进行二进制聚合运算的集中常见的方法并进行了性能测试,并给出性能最佳的方法。

2010-07-26 17:05:00 2109 1

原创 解决SQL Server中视图最多只能引用256个表的一种办法

<br />最近在修bug的时候出现了一个问题,系统中会根据项目的多少动态的去创建一个视图来将所有项目的某些数据union到一起。当系统的项目数量超过256时,问题出现了。SQL Server会抛出如下异常: <br />Msg 106, Level 15, State 1, Procedure vsp_T, Line 256<br />Too many table names in the query. The maximum allowable is 256.<br /> <br />当然将所有项目的数

2010-07-25 15:39:00 3245 1

转载 IBM信息管理领域的10大趋势

<br />原文:<br />http://www.databasejournal.com/features/db2/article.php/3891181?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%253A+DatabaseJournalNews+%2528Database+Journal+News%2529&utm_content=Google+Reader<br /> <br />文章从以下10点分析了IBM信息管理领域趋势:<br

2010-07-15 19:18:00 940

原创 SQL Server中判断闰年的函数

一个SQL Server中判断闰年的函数。

2010-07-12 18:58:00 5168

原创 SQL Server一个打印日历的函数

SQL Server一个打印日历的函数,类似于电脑中点击时间后弹出的日历,有月份及星期,输入年份参数。

2010-07-12 18:56:00 905

原创 Row有争吵吵闹的意思

Row有争吵吵闹的意思

2010-07-06 17:22:00 2063

原创 正确认识SQL Server中的延迟名称解析(Deferred Name Resolution)

开发中经常需要做数据是否存在的判断例如下例:IF EXISTS(select * from sys.databases where name='DBNotExists')BEGIN  USE DBNotExists;   IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[TableNotExists]') AND type in (N'U'))        CREATE TABLE TableNotE

2010-07-05 16:26:00 1223

原创 不要被数据库的collation设置为大小写不敏感(case-insensitive)所欺骗

当我们在安装数据库时,如果SQL Server instance的collation设置选择为大小写敏感,而我们创建数据库(设定库名为DB1)时将数据库的collation选择为大小写不敏感。按照SQL Server的collation判断规则从低级到高级,也就是说按照字段->表

2010-07-01 12:49:00 2017

关于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关注的人

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