易截截图软件、单文件、免安装、纯绿色、仅160KB

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

Aaron Bertrand
Adam Machanic
All Things SQL Server
Allen Kinsel - SQL DBA
Allen White
Amit Bansal writes...
Andrew Fryer's Blog
Andrew Kelly
Andy Leonard
Anything and Everything IT
Arcane Code
Arnie Rowland: Ramblings of a Harried Technogeek
B.I. for the SQL Guy
Bart Duncan's SQL Weblog
belle's sql musings
Benchmark IT Consulting
Benjamin Wright-Jones
BI Polar
BI Thoughts and Theories
Bill Ramos on SQL Server
Bluedog67
Bob Beauchemin's Blog
Bob Duffy's Blobby Blog
Boyan Penev on Microsoft BI
Brad M McGehee
Brent Ozar - SQL Server DBA
Brian Knight
Brian Knight
Carpe Datum
Carter's Dad - Parker's Dad Too!
Chadhoc.net
Chris Randall's SQL Blog
codegumbo
Conor Cunningham's Blog
Craig Freedman's SQL Server Blog
Cristian's Blog
Dan Guzman's Blog
Dangling On The Shoulders Of Giants
Dan's Blog
Darren Gosbell [MVP] - Random Procrastination
Data Dude
Dave does Data
DavidM
DBA Field Notes
DBA Will
Dejan Sarka: Posts
Denis Gobo
Dinesh's Blog :::: Being Compiled ::::
Dirty Reads ...
Donald Farmer: Foraging in the Data Forest
DotNetKicks.com - Stories tagged with SQL
DotNetShoutout - Latest published stories in SQL
Dougbert.com
Elizabeth Vitt
Eugene Asahara
Exploring SQL...
facility9
Gemini Team Blog
Glenn Berry's SQL Server Performance
Greg A. Johnson's Blog
Greg Larsen's Blog
Have Data Will Travel
Home of the Scary DBA
I want some Moore
ILIKESQL.COM blog
In Recovery...
http://blogs.msdn.com/isaac/default.aspx
It's A Musing
Jack
Jamie's Junk
Jason Massie
Jeff's SQL Server Blog
Jessica M. Moss
Jimmy May, Aspiring Geek: SQL Server Performance, Best Practices, Productivity, etc.
Joe Sack's SQL Server WebLog
Joe Webb
John Gallardo's Weblog
Jorg Klein
Josef Richberg
Journey to SQL Authority with Pinal Dave
Kalen Delaney
Keep It Simple and Fast
Kendal Van Dyke
Kevin Kline
Kimberly L. Tripp: Improving *my* SQL skills through your questions!
La bodeguita de Nacho
Latest SQL-Server-Performance.com Articl


相关文档:

航空公司管理系统(VC++ 与SQL 2005)

系统环境:Windows 7
软件环境:Visual C++ 2008 SP1 +SQL Server 2005
本次目的:编写一个航空管理系统
      这是数据库课程设计的成果,虽然成绩不佳,但是作为我用VC++ 以来编写的最大程序还是传到网上,以供参考。用VC++ 做数据库设计并不容易,但也不是不可能。以下是我的程序界面,后面 ......

EXCEL转数据到SQL(已有表结构)

insert into Country123 ([Country_Id], [Region_ID], [Country_EN_Name], [Country], [Country_ALL_ID], [Country_Order_Id]) select [Country_Id], [Region_ID], [Country_EN_Name], [Country], [Country_ALL_ID], [Country_Order_Id] from openrowset( 'Microsoft.Jet.OLEDB.4.0', 'EXCEL 5.0;HDR=YES;IMEX=1; DATABASE= ......

SQL Server中临时表与表变量的区别

我们在数据库中使用表的时候,经常会遇到两种使用表的方法,分别就是使用临时表及表变量。在实际使用的时候,我们如何灵活的在存储过程中运用它们,虽然它们实现的功能基本上是一样的,可如何在一个存储过程中有时候去使用临时表而不使用表变量,有时候去使用表变量而不使用临时表呢?
  临时表
  临时表与永久表相似, ......

SQL Server 2005新特性,部分备份(partial backup)

也是SQL Server 2005带来的新特性,部分备份(partial backup)自动创建数据库中主文件组和所有激活读写功能的文件组的备份。如果备份存在只读文件组的数据库,部分备份将只对主文件组进行备份。这个选项对于那些存在只读文件组的超大型数据库是理想的,它不需要像那些可写的文件组备份得那么频繁。
除了需要指定READ_WRIT ......

令人兴奋的sql server 2005 分页功能!!

先来一段代码:
WITH OrderedOrders AS
(SELECT *,
ROW_NUMBER() OVER (order by [id])as RowNumber  --id是用来排序的列
from table_info ) --table_info是表名
SELECT *
from OrderedOrders
WHERE RowNumber between 50 and 60;
在windows server 2003, sql server 2005 CTP,P4 2.66GHZ,1GB 内存下测试,执行时 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号