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
Fitur T-SQL Window Function Terbaru dari SQL Denali
Bermain-main dengan Fitur T-SQL Denali : SEQUENCE
Renungan atas artikel "Being a SQL Server Pro Is Hard Work!"
Found Error When Starting First SQL Denali Analysis Service in Vertipaq Mode and How to Troubleshoot
Fitur-fitur yang tidak disupport di SQL Denali
Different role of IT architects
Pertanyaan Mengenai SQL Query Optimizer
Solusi dan Pemrograman Transact-SQL : Convert Comma Delimited String into Resultset with Transact-SQL
Solusi dan Pemrograman Transact-SQL : UNPIVOT Problem and Solution
Solusi dan Pemrograman Transact-SQL
Tags
ASP.NET
Business Intelligence
C Sharp
General/motivation
LINQ
Rubrik Solusi dan Teknik Pemrograman Transact SQL
SharePoint and Microsoft Office 2007 SharePoint Server
solusi
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
Curriculum
eBooks
Jobs
Forum
Downloads
Archives
September 2011 (3)
August 2011 (2)
March 2011 (3)
February 2011 (1)
January 2011 (4)
December 2010 (2)
June 2010 (4)
May 2010 (5)
March 2010 (2)
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)
December 2009 - Posts
0
Comments
Looking Inside SQL Server Data Row for Variable Length Column
by
Kasim.Wirama
Looking Inside SQL Server Data Row for Variable Length Column By : Kasim Wirama, MCITP, MCDBA I have shown information on hexadecimal value on fixed length column in my recent posting Looking Inside SQL Server Data Row . Now let’s have a look how variable...
Filed under:
SQL Server
0
Comments
Integrity Check Order in SQL Server
by
Kasim.Wirama
Integrity Check Order in SQL Server By : Kasim Wirama, MCITP, MCDBA SQL Server has 7 table constraints. They are DEFAULT constraint, NOT NULL constraint, CHECK constraint, FOREIGN KEY constraint, UNIQUE constraint, PRIMARY KEY constraint and trigger....
Filed under:
SQL Server
0
Comments
Question and Answer about SQL Server I/O Subsystem Issue
by
Kasim.Wirama
Question and Answer about SQL Server I/O Subsystem Issue By : Kasim Wirama, MCITP, MCDBA In SQL Server Indo mailing list, there was question about slow query performance on one SQL Server instance but not for the other SQL Server instance. This is something...
Filed under:
SQL Server
0
Comments
Determine Row Size in SQL Server
by
Kasim.Wirama
Determine Row Size in SQL Server By : Kasim Wirama, MCITP, MCDBA To be able to determine the number of rows for a page, you need to determine the row size for respective row. SQL Server could give you information through catalogue view. First let’s we...
Filed under:
SQL Server
1
Comments
Looking Inside SQL Server Data Row
by
Kasim.Wirama
Looking Inside SQL Server Data Row By : Kasim Wirama, MCITP, MCDBA If you have read my 2 previous postings ( Review SQL Server Data Page via Undocumented DBCC Command and Locate SQL Server Data in SQL Server Storage Engine ) about the use of DBCC PAGE...
Filed under:
SQL Server
0
Comments
Locate SQL Server Data in SQL Server Storage Engine
by
Kasim.Wirama
Locate SQL Server Data in SQL Server Storage Engine By : Kasim Wirama, MCITP, MCDBA If you are interested to know how SQL Server internal works, you will have options to optimize SQL Server. In this posting, I will show how to locate SQL Server data in...
Filed under:
SQL Server
1
Comments
Review SQL Server Data Page via Undocumented DBCC Command
by
Kasim.Wirama
Review SQL Server Data Page via Undocumented DBCC Command By : Kasim Wirama, MCITP, MCDBA Table in SQL Server is composed from one or more data and index page. You can examine where and how your data is located in physical disk and in-memory buffer by...
Filed under:
SQL Server
3
Comments
Behind Detach-Attach SQL Server Database
by
Kasim.Wirama
Behind Detach-Attach SQL Server Database By : Kasim Wirama, MCITP, MCDBA You probably have done copy database to other location by using either database backup or detach-attach database operation. Do you know what precisely happen behind detach database...
Filed under:
SQL Server
0
Comments
Tempdb Best Practice
by
Kasim.Wirama
Tempdb Best Practice By : Kasim Wirama, MCDBA, MCITP In area of SQL Server performance tuning, there are 4 possible bottleneck locations. They are memory, hard drive, processor, and tempdb. Tempdb should be taken care of because there is only one tempdb...
Filed under:
SQL Server
2
Comments
Objects in Tempdb
by
Kasim.Wirama
Objects in Tempdb By : Kasim Wirama, MCITP, MCDBA Tempdb role has more functionality in SQL Server 2005/2008 than previous versions. In SQL 2005/2008, tempdb has 3 types of object, they are : user object, internal objects and version store. What are they...
Filed under:
SQL Server
0
Comments
SQL Server 2005 - Query Rewriting for Performance Tuning
by
Kasim.Wirama
SQL Server 2005 - Query Rewriting for Performance Tuning By : Kasim Wirama, MCITP, MCDBA For many times, I am asked to solve slow running stored procedure. Interesting to know more? If yes, read on… I was asked by a user to work on a mission critical...
Filed under:
SQL Server