SQL Server knowledge center
everything about SQL Server
See also:
Other Geeks@INDC
Sign in
|
Join
|
Help
Home
Contact
About
RSS
Atom
Comments RSS
Search
Recent Posts
Database Integrity Check with SMO
Performing Database Restore by SMO
Performing Database Backup by SMO
Get User Database Properties with SMO
Get List of SQL Server Instances with SMO
Building First SMO (SQL Server Management Object) Application
SMO (SQL Server Management Object) in SQL Server 2005/2008
Passing Table-Valued Parameter in SSIS 2008
Practical Steps of Configuring Transparent Data Encryption
Get Spatial Position for Geography Data Type in SQL 2008
Tags
Business Intelligence
C Sharp
General/motivation
LINQ
SharePoint and Microsoft Office 2007 SharePoint Server
SQL Server
SQL Server Reporting Services
Windows Communication Foundation (WCF)
Windows Workflow Foundation
News
Your database is crawling like turtles? I can turn it like sport car, contact me if you need help. My email : sologuyfromrolla@gmail.com
Navigation
Home
Blogs
Videos
Kurikulum
Pustaka
Facebook
Twitter
Forums
Downloads
Archives
January 2010 (10)
December 2009 (11)
November 2009 (3)
August 2009 (5)
July 2009 (10)
June 2009 (1)
April 2009 (3)
March 2009 (3)
February 2009 (11)
January 2009 (7)
December 2008 (17)
November 2008 (11)
October 2008 (5)
September 2008 (8)
August 2008 (2)
July 2008 (16)
June 2008 (15)
May 2008 (16)
April 2008 (20)
March 2008 (19)
February 2008 (16)
January 2008 (21)
December 2007 (31)
November 2007 (30)
October 2007 (16)
September 2007 (4)
August 2007 (8)
April 2007 (19)
March 2007 (1)
February 2007 (1)
July 2006 (1)
May 2006 (29)
April 2006 (11)
June 2008 - Posts
0
Comments
Parallelism in Index Scan
by
Kasim.Wirama
Parallelism in Index Scan By : Kasim Wirama, MCDBA Previous articles, I post some information about internal of parallelism. Now take a look parallelism in index scan. Is that bad if you have parallelism in index scan? Not really, I think. If the query...
Filed under:
SQL Server
0
Comments
Internal of Parallelism
by
Kasim.Wirama
Internal of Parallelism By : Kasim Wirama, MCDBA If you notice in execution plan, probably you would find out parallelism in some operators of an execution plan. Let’s look inside parallelism behaviour in general. Parallelism of an operator is made up...
Filed under:
SQL Server
4
Comments
SQL Internal Viewer Tool
by
Kasim.Wirama
You would like to know internal structure of your SQL Server? Now, you can view how fragmented your database visually or other information regarding to allocation map through freeware tool for SQL Server, namely SQL Internal Viewer ( http://www.sqlinternalsviewer...
Filed under:
SQL Server
0
Comments
Table Spool in Equality Correlated Subquery
by
Kasim.Wirama
Table Spool in Equality Correlated Subquery By : Kasim Wirama, MCDBA Recent posting, I examine spooling characteristic in nonequality correlated subquery . In nonequality correlated subquery , optimizer generate index spool which created index on the...
Filed under:
SQL Server
1
Comments
Parallelism Overview
by
Kasim.Wirama
Parallelism Overview By : Kasim Wirama, MCDBA When you observe execution plan for some query that processes many rows, you will find operator with small arrow at graphical execution plan. For example, you have Index Scan operator with double small arrow...
Filed under:
SQL Server
0
Comments
Degree of Parallelism, Max Degree of Parallelism, Affinity Mask and Thread Allocation
by
Kasim.Wirama
Degree of Parallelism, Max Degree of Parallelism, Affinity Mask and Thread Allocation By : Kasim Wirama, MCDBA You can view parallelism in your execution plan by viewing either graphically or textually. Optimizer decides between parallelism and serial...
Filed under:
SQL Server
1
Comments
Decorrelating Correlated Subquery
by
Kasim.Wirama
Decorrelating Correlated Subquery By : Kasim Wirama, MCDBA I have written posting about correlated and noncorrelated subquery. Now let’s take a look correlated subquery but optimizer generated noncorrelated query-like execution plan. Here is query to...
Filed under:
SQL Server
0
Comments
Skip Stored Procedure Recompilation
by
Kasim.Wirama
Skip Stored Procedure Recompilation By : Kasim Wirama, MCDBA Stored procedure (and also function) is preferable to be implemented in SQL Server because its compilation code is cached, so next execution will take the compilation form in cache. Imagine...
Filed under:
SQL Server
0
Comments
Rebind and Rewind on Non Equal Correlated Subquery
by
Kasim.Wirama
Rebind and Rewind on Non Equal Correlated Subquery By : Kasim Wirama, MCDBA This posting, I would show other execution plan operator that has caching capability regarding to non correlated subquery that involved non equality relationship between inner...
Filed under:
SQL Server
1
Comments
Execution Plan for Noncorrelated Query
by
Kasim.Wirama
Execution Plan for Noncorrelated Query By : Kasim Wirama , MCDBA This posting, I would like to show various possible execution plan for non correlated query and possible action to rewrite query for better execution plan. Let’s run the query at Northwind...
Filed under:
SQL Server
1
Comments
Index Union Analysis
by
Kasim.Wirama
Index Union Analysis By : Kasim Wirama, MCDBA When there are 2 or more where criteria which are joined with OR, each columns is different among others, they are indexed and search selectivity is high, optimizer could consider multiple indexes and join...
Filed under:
SQL Server
0
Comments
Peer-to-Peer Replication in SQL Server 2008
by
Kasim.Wirama
Peer-to-Peer Replication in SQL Server 2008 By : Kasim Wirama, MCDBA One of interesting enhancements made in SQL Server 2008 February CTP is in area of replication, peer to peer replication particularly. Now with SQL Server 2008 February CTP, a SQL Server...
Filed under:
SQL Server
0
Comments
Dynamic Index Seek Review
by
Kasim.Wirama
Dynamic Index Seek Review By : Kasim Wirama, MCDBA Other execution plan pattern that is noticeable is dynamic index seek. A plan is called dynamic index seek when the optimizer doesn’t know variable values at compile time, and the plan generates index...
Filed under:
SQL Server
0
Comments
Concatenation, Merge Join Concatenation and Hash Match Union
by
Kasim.Wirama
Concatenation, Merge Join Concatenation and Hash Match Union By : Kasim Wirama, MCDBA Other operators that you might encounter in execution plan are concatenation, merge join concatenation and hash match union. Usually these operators are generated when...
Filed under:
SQL Server
0
Comments
Looking into Hash Aggregation
by
Kasim.Wirama
Looking into Hash Aggregation By : Kasim Wirama, MCDBA This article, I would like to look into possible execution plan for hash aggregation. Query for hash aggregation is same as that for stream aggregation, the difference is that stream aggregation using...
Filed under:
SQL Server