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 2008 - Posts
1
Comments
Checking Depreciated Feature through Profiler
by
Kasim.Wirama
Checking Depreciated Feature through Profiler By : Kasim Wirama, MCDBA, MCITP I have long time to use profiler, mainly to trouble shoot database problem and also it is useful in database development too. And I see profiler is the easiest tool among similar...
Filed under:
SQL Server
0
Comments
SQL CLR User Defined Function
by
Kasim.Wirama
SQL CLR User Defined Function By : Kasim Wirama, MCDBA, MCITP I would like to show how to create CLR user defined functions in SQL Server project type (Visual Studio 2005/2008). Here I would like to give 2 examples for 2 types of user defined functions...
Filed under:
SQL Server
0
Comments
Namespace for SQL CLR Assembly
by
Kasim.Wirama
Namespace for SQL CLR Assembly By : Kasim Wirama, MCDBA, MCITP SQL Server provides possibility to reference .NET assembly code from outside database environment. It is possible through integration .NET CLR into SQL Server architecture, called SQL CLR...
Filed under:
SQL Server
0
Comments
Various Way to Retrieve Column Information
by
Kasim.Wirama
Various Way to Retrieve Column Information By : Kasim Wirama, MCDBA, MCITP If you always query against database metadata information in SQL Server, you must be familiar with some of system tables such as sysdatabases, syscolumns, sysobjects, etc. Some...
Filed under:
SQL Server
0
Comments
Prepare Your Database Script for Smooth Upgrade
by
Kasim.Wirama
Prepare Your Database Script for Smooth Upgrade By : Kasim Wirama, MCDBA, MCITP Your database probably has been run well over years using SQL Server 2000/2005. And upgrade process doesn’t always go smoothly and you should that the more bigger major version...
Filed under:
SQL Server
0
Comments
NULL = NULL is True ?
by
Kasim.Wirama
NULL = NULL is True ? By : Kasim Wirama, MCDBA, MCITP Not as in common programming world where a comparison only yields TRUE or FALSE, in SQL Server comparison would yield 3 possible result : TRUE, FALSE and UNKNOWN. UNKNOWN result would come from comparison...
Filed under:
SQL Server
0
Comments
Top and Order By Combination
by
Kasim.Wirama
Top and Order By Combination By : Kasim Wirama, MCDBA, MCITP Given that a table (for example : content table) contains integer records : 2, 1, 3 and I would like to retrieve the rows in ordered fashion, you simply issue a query : SELECT COL1 FROM CONTENT...
Filed under:
SQL Server
0
Comments
Danger of Dynamic SQL
by
Kasim.Wirama
Danger of Dynamic SQL By : Kasim Wirama, MCDBA, MCITP You probably have used dynamic SQL inside your stored procedure. As name implies, the query could change dynamically and usually dynamic SQL is executed by sp_executesql or EXEC () statement. What...
Filed under:
SQL Server
0
Comments
Setting Up Performance Counter Measurement for SQL Server Performance Issue
by
Kasim.Wirama
Setting Up Performance Counter Measurement for SQL Server Performance Issue By : Kasim Wirama, MCDBA, MCITP If you encounter database performance issue and you will measure database performance issue affected by database environment, you can rely on Windows...
Filed under:
SQL Server
1
Comments
Querying Object Metadata With Catalog View
by
Kasim.Wirama
Querying Object Metadata With Catalog View By : Kasim Wirama, MCDBA, MCITP If you want to know SQL Server specifics object such as column, computed column, check constraint, default constraint, events, extended procedures, foreign keys, foreign key columns...
Filed under:
SQL Server
2
Comments
Activity Monitor Toolbar in SSMS SQL Server 2008
by
Kasim.Wirama
Activity Monitor Toolbar in SSMS SQL Server 2008 By : Kasim Wirama, MCDBA, MCITP I capture something interesting when I fire up SQL Server Management Studio (SSMS) for SQL Server 2008. Try to find a toolbar button called Activity Monitor. Found it? Yes...
Filed under:
SQL Server
0
Comments
Question to Contemplate this Weekend
by
Kasim.Wirama
Question to Contemplate this Weekend By : Kasim Wirama, MCDBA, MCITP How far does query cost 96% : 4% or even 99% : 1% impact for your application performance? J Turn expensive hardware cost in IT expense into effective hardware cost in IT profit center...
Filed under:
SQL Server
1
Comments
Querying CLR Assembly Information with Catalog View
by
Kasim.Wirama
Querying CLR Assembly Information with Catalog View By : Kasim Wirama, MCDBA, MCITP Since SQL Server 2005 has been released to market, you have better option to query metadata of SQL Server. Metadata in general terms is simply defined as data describes...
Filed under:
SQL Server
0
Comments
Get database and database files information
by
Kasim.Wirama
Get database and database files information By : Kasim Wirama, MCDBA, MCITP You can get information about database and file information with catalog view. There are 6 catalog views related to database and files information. Let’s look at each of them...
Filed under:
SQL Server
0
Comments
Extended Event, New Tracing Engine in SQL Server 2008
by
Kasim.Wirama
Extended Event, New Tracing Engine in SQL Server 2008 By : Kasim Wirama, MCDBA, MCITP SQL Server 2008 introduces new tracing engine capability, called Extended Events. It will capture server side events and put the capture result into a wide variety of...
Filed under:
SQL Server
More Posts
Next page »