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)
October 2007 - Posts
1
Comments
Checkpointing in SSIS
by
Kasim.Wirama
Checkpointing in SSIS By : Kasim Wirama , MCDBA, MVP SQL Server If you ever developed sophisticated DTS package, and there is another error in one of the task, usually you have to reexecute the package from beginning. For complex package and big data...
Filed under:
SQL Server
1
Comments
Managing Transaction in SSIS
by
Kasim.Wirama
Managing Transaction in SSIS Managing Transaction in SSIS By : Kasim Wirama , MCDBA, MVP SQL Server SSIS supports transactions as you usually use in TSQL, there are 2 kinds of transactions in SSIS : Distributed Transaction This transaction uses 2 phase...
Filed under:
SQL Server
0
Comments
Managing One Temporary Table in SSIS
by
Kasim.Wirama
Managing One Temporary Table in SSIS Managing One Temporary Table in SSIS By : Kasim Wirama , MCDBA, MVP SQL Server In T-SQL, you must have used temporary table to keep temporary resultset . Temporary table is unique per connection, so if there is 2 users...
Filed under:
SQL Server
0
Comments
Setting Up dynamic property value at SSIS
by
Kasim.Wirama
Setting Up dynamic property value at SSIS Setting Up dynamic property value at SSIS By : Kasim Wirama , MCDBA, MVP SQL Server SSIS offers more flexibility and debugging feature that doesn’t exists in previous ETL version (DTS). This article I will let...
Filed under:
SQL Server
0
Comments
Slowly Changing Dimension in SSIS
by
Kasim.Wirama
Slowly Changing Dimension in SSIS Slowly Changing Dimension in SSIS By: Kasim Wirama , MCDBA, MVP SQL Server Another SSIS component that is interesting to examine is Slowly Changing Dimension. Term of SCD (slowly changing dimension) is used to describe...
Filed under:
SQL Server
2
Comments
Unpivot columns in SSIS
by
Kasim.Wirama
Unpivot columns in SSIS By : Kasim Wirama, MCDBA, MVP SQL Server If you see my previous article about pivoting data using SSIS component called Pivot, you will agree with me that it is easy to use, all you need to do is to define relational query that...
Filed under:
SQL Server
0
Comments
Referring To Your Reference Table with Fuzzy Lookup
by
Kasim.Wirama
Referring To Your Reference Table with Fuzzy Lookup By: Kasim Wirama, MCDBA, MVP SQL Server One of problem of ETL world is referencing non existent data. For example when one column of fact table that is foreign key to a dimension. It is usually caused...
Filed under:
SQL Server
0
Comments
Pivoting data with SSIS
by
Kasim.Wirama
Pivoting data with SSIS By : Kasim Wirama, MCDBA, MVP SQL Server SSIS provides other interesting component for data pivoting. It is called Pivot component. It will automate pivot requirement. There are some mandatory properties that you should set up...
Filed under:
SQL Server
1
Comments
It’s Time to Contribute to Indonesia SQL Server Community
by
Kasim.Wirama
I am thinking of writing SQL Server e-book focusing on T-SQL functionality of SQL Server 2005 through project Otak ( http://otak.csharpindonesia.net/ ). .NET Developers especially Indonesia .NET developers should know how to leverage hidden power of T...
Filed under:
SQL Server
0
Comments
Recognize Similar Word with Built in Fuzzy Functionality in SSIS
by
Kasim.Wirama
Recognize Similar Word with Built in Fuzzy Functionality in SSIS By : Kasim Wirama, MCDBA, MVP SQL Server SSIS has one most interesting component that is very handy in cleansing your data. You might face terrible moment when cleansing out your data. In...
Filed under:
SQL Server
1
Comments
Extract Particular Word/Phrase with SSIS
by
Kasim.Wirama
Extract Particular Word/Phrase with SSIS By: Kasim Wirama, MCSD.NET, MVP SQL Server SSIS provides filtering some particular words at free text with Term Lookup component. It will read Unicode text to find words that are in its list by looking up to lookup...
Filed under:
SQL Server
0
Comments
Identifying Occurrence of Some Words with SSIS
by
Kasim.Wirama
Identifying Occurrence of Some Words with SSIS By: Kasim Wirama, MCDBA, MVP SQL Server If you ever did some text analysis, you must ever collect occurrence frequency of words in free text. SSIS makes it very easy for you by automating such a task that...
Filed under:
SQL Server
1
Comments
Execute Row per Row Basis with OLEDB Command Component of SSIS
by
Kasim.Wirama
Execute Row per Row Basis with OLEDB Command Component of SSIS By : Kasim Wirama, MCDBA, MVP SQL Server If you have ever used Query Driven Task in DTS, you must be familiar with event for execute different stored procedures for insert, update, delete...
Filed under:
SQL Server
0
Comments
Implementing Conditional Task Execution with SSIS
by
Kasim.Wirama
Implementing Conditional Task Execution with SSIS By: Kasim Wirama, MCDBA, MVP SQL Server If you have ever developed DTS package, you must be familiar with Precedence Constraint (Success, Failure, Completion) move from one task to another task. Some enhancements...
Filed under:
SQL Server
0
Comments
Exporting Large Object data type with SQL Server Integration Services (SSIS)
by
Kasim.Wirama
Exporting Large Object data type with SQL Server Integration Services (SSIS) By: Kasim Wirama, MCDBA, MVP SQL Server You might have requirement to export LOB (Large Object) data from database to file system. Let say your documents saved in LOB column...
Filed under:
SQL Server
More Posts
Next page »