Sign in
SQL Server Performance
Best Practices, Tips, Benchmarks, Troubleshooting and Monitoring - SQL Server, ADO.NET, Analysis Services, and SSIS
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Analysis Services
Announcements
Benchmarks
Case Studies
ETL
Integration Services
Performance - SQL/TSQL
SQL Server 2005
SQL Server 2008
SQL Server Performance
SQLOS DMVs
SSIS
Troubleshooting
Archive
Archives
May 2011
(1)
April 2010
(1)
November 2009
(1)
August 2009
(2)
March 2009
(2)
November 2008
(2)
October 2008
(1)
August 2008
(1)
February 2008
(2)
August 2007
(1)
May 2007
(5)
April 2007
(5)
March 2007
(4)
February 2007
(6)
January 2007
(1)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
SQL Server Performance
The “Balanced Data Distributor” for SSIS
Posted
over 2 years ago
by
SQL Server Performance Team
10
Comments
The “Balanced Data Distributor” for SSIS Len Wyatt, SQL Server Performance Team There is a new transform component available for SQL Server Integration Services. It’s called the Balanced Data Distributor (BDD) and the download is...
SQL Server Performance
Kilimanjaro Ships!
Posted
over 3 years ago
by
SQL Server Performance Team
0
Comments
SQL Server 2008 R2 launches today! While the name “R2” sounds like an incremental update to SS2008 (or half of a Star Wars droid), in fact Kilimanjaro (the internal code name) is packed with big features. We’ve also got a lot to show for our work on performance...
SQL Server Performance
New TPC Results on SQL Server 2008 R2
Posted
over 4 years ago
by
SQL Server Performance Team
1
Comments
On November 2, 2009, Unisys published two new TPC results (TPC-E and TPC-H) using the newly announced SQL Server 2008 R2* and Windows Server 2008 R2**. These results were published on the 96-core Unisys ES7000 system. These are the first SQL...
SQL Server Performance
Great New TPC-H Results with SQL Server 2008
Posted
over 4 years ago
by
SQL Server Performance Team
0
Comments
Our partners at Dell and HP have published 2 new TPC-H results with SQL Server 2008 using Fusion-io’s ioDrive solid-state technology. These are the first TPC results using solid-state technology and they illustrate the high performance along...
SQL Server Performance
Using SSIS to get data out of Oracle: A big surprise!
Posted
over 4 years ago
by
SQL Server Performance Team
15
Comments
Since late last year, Microsoft has made the Attunity connectors to Oracle databases available to Enterprise Edition customers. We all recognized right away that these connectors were faster than the pre-existing options from either Microsoft or Oracle...
SQL Server Performance
Great new SQL Server performance on Intel's Xeon 5500 series, aka Nehalem-EP
Posted
over 4 years ago
by
SQL Server Performance Team
0
Comments
Yesterday, Intel launched its new Xeon 5500 series processors, code named Nehalem-EP. This is essentially the first server-class version of what Intel launched on the desktop as Core i7 last fall. With no frontside bus, and an embedded, multi-channel...
SQL Server Performance
An ETL World Record Revealed (Finally)
Posted
over 4 years ago
by
SQL Server Performance Team
1
Comments
We suppose a more appropriate title would have been: Better Late Than Never. David should begin by apologizing. Last month was the first anniversary of the ETL world record we set last year with SSIS, loading 1 TB of data in under 30 minutes. While...
SQL Server Performance
Windows Server 2008 + SQL Server 2008 = Geo-replication Benefits
Posted
over 5 years ago
by
SQL Server Performance Team
0
Comments
After running an experiment, using datacenters on each coast of the U.S., our friends in MSCOM ops verified that the combination of Windows Server 2008 and SQL Server 2008 are great for enabling database geo-replication, thanks to a 100X gain in performance...
SQL Server Performance
SQL Server is Movin' On Up!
Posted
over 5 years ago
by
SQL Server Performance Team
1
Comments
At last week's WinHEC in Los Angeles, SQL GM Quentin Clark joined Windows Server VP Bill Laing on stage, to announce our upcoming support for more than 64 logical processors, the current limit in Windows and SQL Server. This expanded scale-up capability...
SQL Server Performance
TPC-E – Raising the Bar in OLTP Performance
Posted
over 5 years ago
by
SQL Server Performance Team
6
Comments
Glenn Paulley, Director of Engineering at Sybase iAnywhere, posted a commentary titled “ The State of TPC-E ” on his blog three weeks ago (10/3/08). A better title would have been “All TPC-E Results Are On Microsoft SQL Server. Why?” Mr. Paulley takes...
SQL Server Performance
SQL Server 2008 is on its way with great performance
Posted
over 5 years ago
by
SQL Server Performance Team
2
Comments
Just left the final shiproom meeting for SQL Server 2008, and am happy to say every team has signed off, so the product is now in the hands of manufacturing, and in process toward web and media availability for you. We've shipped! MSDN and TechNet subscriber...
SQL Server Performance
SQL Server 2008 launched today, with great performance and scalability
Posted
over 5 years ago
by
SQL Server Performance Team
12
Comments
Today, as the old saying goes, is a red-letter day, with the launch of Windows Server 2008, Visual Studio 2008, and SQL Server 2008. Our team has been heads down, working to ensure SQL Server 2008 is delivered to you with great performance and scalability...
SQL Server Performance
ETL World Record!
Posted
over 5 years ago
by
SQL Server Performance Team
31
Comments
Today at the launch of SQL Server 2008, you may have seen the references to world-record performance doing a load of data using SSIS. Microsoft and Unisys announced a record for loading data into a relational database using an Extract, Transform and Load...
SQL Server Performance
Spool operators in query plan...
Posted
over 6 years ago
by
SQL Server Performance Team
1
Comments
I came across a question in the relationalserver.performance newsgroup where a customer was wondering about the spools seen in a recursive query execution plan. The query is shown below: USE Northwind; Go WITH EmpChart AS ( SELECT EmployeeId, ReportsTo...
SQL Server Performance
What's swimming in your bufferpool?
Posted
over 6 years ago
by
SQL Server Performance Team
3
Comments
When doing a performance investigation a useful thing to do is look at what data is present in the buffer pool. This can be used to analyze impact of running a query on the state of data pages in buffer pool. By collecting the pre and post picture of...
SQL Server Performance
Adjust buffer size in SSIS data flow task
Posted
over 6 years ago
by
SQL Server Performance Team
2
Comments
The data flow task in SSIS (SQL Server Integration Services) sends data in series of buffers. How much data does one buffer hold? This is bounded by DefaultBufferMaxRows and DefaultBufferMaxSize, two Data Flow properties. They have default values of 10...
SQL Server Performance
Implement Parallel Execution in SSIS
Posted
over 6 years ago
by
SQL Server Performance Team
9
Comments
SQL Server Integration Services (SSIS) allows parallel execution in two different ways. These are controlled by two properties as outlined below. The first one is MaxConcurrentExecutables, a property of the package. It defines how many tasks (executables...
SQL Server Performance
Something about SSIS Performance Counters
Posted
over 6 years ago
by
SQL Server Performance Team
3
Comments
SQL Server Integration Services provide a set of performance counters. Among them the following few are helpful when you tune or debug your package: Buffers in use Flat buffers in use Private buffers in use Buffers spooled Rows read...
SQL Server Performance
Set BLOBTempStoragePath and BufferTempStoragePath to Fast Drives
Posted
over 6 years ago
by
SQL Server Performance Team
2
Comments
BLOBTempStoragePath and BufferTempStoragePath are two properties on Data Flow Task. They define where on the hard disk(s) to page buffer data to. BLOBs (text, next, image) are written to BLOBTempStoragePath. All other buffer data will be swapped to BufferTempStoragePath...
SQL Server Performance
Set up OLE DB source to read from View efficiently
Posted
over 6 years ago
by
SQL Server Performance Team
6
Comments
Introduction OLE DB source adapter is one of the most commonly used components in SSIS data flow task. In this article, we will discuss a very important performance observation about this adapter. Use “SQL Command” to pull data from a view OLE...
SQL Server Performance
Getting Optimal Performance with Integration Services Lookups
Posted
over 6 years ago
by
SQL Server Performance Team
8
Comments
Introduction Most users see good performance from SSIS packages using out-of-the-box configurations and with little tuning. Sometimes, though, it is necessary to do tuning to get optimal performance. One of the most commonly used transformations is the...
SQL Server Performance
What’s so temporary about tempdb?
Posted
over 6 years ago
by
SQL Server Performance Team
1
Comments
Other than #temptables, @localvariables and many other objects being stored in tempdb what’s so temporary about it? TempDB is always present on each SQL Server instance and can be a determining factor of your overall performance. In many ways tempdb could...
SQL Server Performance
SQL Server 2005 SP2 Re-release and post fixes
Posted
over 6 years ago
by
SQL Server Performance Team
0
Comments
Bob Ward from PSS has a wonderful blog article that explains the details about the re-release of SQL Server 2005 SP2 and fixes posted later. This is a must read for anyone deploying SQL Server 2005 SP2 to understand the various hotfixes, GDRs and procedures...
SQL Server Performance
Microbenchmarking
Posted
over 6 years ago
by
SQL Server Performance Team
1
Comments
Microbenchmarking is the art of testing your machine's basic configuration like disk latency, memory latency, CPU performance using series of tests. You can find more details at: Types of benchmarks How do you assess the performance of a new machine with...
SQL Server Performance
New MSDN Books Online search functionality
Posted
over 6 years ago
by
SQL Server Performance Team
1
Comments
Check out the new Books Online search functionality online. The link below provides a scoped search of Books Online that returns a more precise and targeted result set. You can use it to search Books Online content quickly. http://search.live.com/macros...
Page 1 of 2 (35 items)
1
2