Sign in
Engine Watch
database engine technology and SQL Server
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
No tags have been created or used yet.
Archive
Archives
March 2006
(1)
January 2006
(1)
November 2005
(2)
October 2005
(2)
September 2005
(5)
August 2005
(4)
July 2005
(3)
June 2005
(2)
May 2005
(3)
April 2005
(3)
March 2005
(6)
February 2005
(3)
January 2005
(2)
November 2004
(5)
October 2004
(4)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Engine Watch
White paper Link: trouble shooting SQL Server 2005 performance problems
Posted
over 7 years ago
by
weix
0
Comments
a must read: http://www.microsoft.com/technet/prodtechnol/sql/2005/tsprfprb.mspx
Engine Watch
2006 greetings
Posted
over 7 years ago
by
weix
0
Comments
This is my first blog posting for 2006. I went to china for a almost whole month at the end of 2005. I went to several cities. I presented at the SQL 2005 Launch Event in china. I had a great time.
Engine Watch
Is lock grant in SQL Server First-In-First-Out (FIFO)?
Posted
over 8 years ago
by
weix
8
Comments
Many people thought that lock grant in SQL Server was FIFO to avoid starvation problems. Think about it. If someone is able to get in front of you in a super market checkout queue, you may never be able to get out of the store. My friend Santtu who...
Engine Watch
SQL 2005 shipped (11/7/2005)
Posted
over 8 years ago
by
weix
0
Comments
What an exciting five years. Areas I personally contributed: snapshot isolation and RCSI; page allocation and free space management; tempdb and a few other smaller things.
Engine Watch
Link: SQL Server 2000 Build Chart
Posted
over 8 years ago
by
weix
0
Comments
This could be pretty useful: a build chart lists all of the known KB articles, hotfixes and other builds of SQL Server 2000 that have been released: http://www.aspfaq.com/sql2000Builds.asp
Engine Watch
introducing the SQLCAT team blog
Posted
over 8 years ago
by
weix
0
Comments
These guys works with the largest SQL Server databases: http://blogs.msdn.com/sqlcat/
Engine Watch
[SQL Server 2005] TEMPDB optimization
Posted
over 8 years ago
by
weix
3
Comments
In SQL 2005 we have done quite a bit of internal improvements in tempdb scalability. These include: Caching of IAM and first data page for temp table and table variables. Improved allocation page latching protocol so that we use UP latch less...
Engine Watch
[SQL 7.0] capacity planning tips
Posted
over 8 years ago
by
weix
0
Comments
This is really old, but some tips are still potentially useful: http://www.microsoft.com/technet/prodtechnol/sql/70/tips/storagen.mspx
Engine Watch
SQL 2000: stored proc recompile
Posted
over 8 years ago
by
weix
0
Comments
Old article but still very useful: http://support.microsoft.com/default.aspx?scid=kb;en-us;243586
Engine Watch
SQL 2000: what to do if tempdb grows to be very big
Posted
over 8 years ago
by
weix
1
Comments
Unless your workload changed significantly, shrink file is not going to help you because tempdb will just grow back if a query needs that amount of free space. So a better way is to identify the query and try to optimize that, maybe by adding an index...
Engine Watch
SQL 2005: TSQL enhancements
Posted
over 8 years ago
by
weix
1
Comments
Click the following link to learn things like: TOP, RANK, ROW_NUMBER, PIVOT, Recursion... http://www.awprofessional.com/articles/article.asp?p=327394&seqNum=7&rl=1
Engine Watch
[sql 2005] Q: How do we verify page checksum in a database to make sure I have no hardware problem?
Posted
over 8 years ago
by
weix
0
Comments
DBCC CHECKDB will do just what you want. The PHYSICAL_ONLY option is probably the fastest way to get the checksums validated.
Engine Watch
[SQL 2005] Q: How to find out how much space is used in database ?
Posted
over 8 years ago
by
weix
2
Comments
Somebody asked me this question. So here it is: SQL 2005 still supports the following three ways to report data and log space usage for a database: DBCC SQLPERF ( LOGSPACE ) can tell you the log size and used size. sp_spaceused for space...
Engine Watch
SQL2005 CLR: two white papers
Posted
over 8 years ago
by
weix
0
Comments
DBA focus: http://www.sqlskills.com/resources/Whitepapers/SQL%20Server%20DBA%20Guide%20to%20SQLCLR.htm Developer focus: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql90/html/sqlclrguidance.asp
Engine Watch
SkyServer based on SQL Server
Posted
over 8 years ago
by
weix
0
Comments
This is a quite old paper (Jan 02): http://research.microsoft.com/~gray/Papers/MSR_TR_O2_01_20_queries.pdf I was reading some news on astronomy which mentioned the SDSS. So I looked up this paper for some more detail. I thought you might like the...
Engine Watch
SQL Server 2000 Wait Types
Posted
over 8 years ago
by
weix
1
Comments
http://sqldev.net/articles/WaitTypes.htm
Engine Watch
SQL 2000 and 2005: how many files to create in a database
Posted
over 8 years ago
by
weix
1
Comments
The following KB: http://support.microsoft.com/kb/328551 talks about how many files the tempdb database should have. Is there similar suggestion for regular databases? Here is my thought: It is hard to predict how many files are needed per file group...
Engine Watch
SQL 2005 security resources
Posted
over 8 years ago
by
weix
0
Comments
A useful article: http://msdn.microsoft.com/msdnmag/issues/05/06/SQLServerSecurity/default.aspx And this webcast: http://msevents.microsoft.com/cui/WebCastEventDetails.aspx?EventID=1032263279&EventCategory=5&culture=en-us&CountryCode...
Engine Watch
Microsoft SQL Server 2000 Index Defragmentation Best Practices
Posted
over 8 years ago
by
weix
2
Comments
This is a very good white paper on this important topic http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/ss2kidbp.mspx
Engine Watch
temp table allocation in SQL 2005
Posted
over 8 years ago
by
weix
1
Comments
Temp table is no different from regular tables. We may choose either page or extent allocation to optimize performance and space utilization. The kinds of operation affect how we choose: select into bulk insert create index insert...
Engine Watch
TEMPDB optimization in SQL Server 2005
Posted
over 8 years ago
by
weix
0
Comments
I just found this article which mentions tempdb optimization, and other things useful: http://www.scalabilityexperts.com/default.asp?action=article&ID=195
Engine Watch
statistics white paper
Posted
over 8 years ago
by
weix
0
Comments
really cool: http://www.microsoft.com/technet/prodtechnol/sql/2005/qrystats.mspx
Engine Watch
interview with Kalen Delaney
Posted
over 8 years ago
by
weix
0
Comments
I am too busy lately. So here is just a link to something you can download and listen to: http://www.sqldownunder.com/
Engine Watch
SQL Server 2000 Sizing and Capacity Planning
Posted
over 8 years ago
by
weix
1
Comments
Found two useful things on the internet today: Planning for Consolidation guide from microsoft: http://www.microsoft.com/technet/prodtechnol/sql/2000/plan/sql2kcon.mspx A guideline from network appliance: http://www.netapp.com/tech_library...
Engine Watch
Beginner: Manage database file size
Posted
over 8 years ago
by
weix
1
Comments
<Rewrote from my newgroup post> Case: 4GB database with two "big" tables: 1.5 million records, table with almost 1 million records, and each month, import about 300,000 records, also delete some old records. database goes up to 5 or 6 GB and...
Page 1 of 2 (46 items)
1
2