Click here to Skip to main content
15,881,898 members
Articles / Database Development / SQL Server
Article

SQL Pivot and Table Adapter

Rate me:
Please Sign up or sign in to vote.
4.44/5 (7 votes)
23 Oct 2008CPOL2 min read 37.1K   27   2
Using TableAdapter to display Pivot result without code.

Introduction

The Pivot operator in SQL Server 2005 is very useful for displaying a crosstab report. Using the DataGrid control, we can easily display a crosstab report in a Windows form. This article shows you how to do it without writing any code.

Procedures

First, we need to create a table to manipulate and show the data. Using SQL2005 Server Management Studio, you should be able to crate a table as in Table 1. The table name I used was Pivt. You are free to use any name.

Next, you can try out the Pivot SQL as in listing 1 in the SQL2005 query window. This serves as a check that the statement is correct and the Pivot SQL produces the desired result.

Table1.PNG

Listing_1.PNG

Next, in Visual Studio 2005, open a new Windows project and create a “DataTableadapter”. Make all the necessary connections to the database server. While in the process of creating the “DataTableAdapter”, paste the SQL Pivot statement in the query window. Continue with all the steps until the “DataTableAdapter” is created. In the “DataTableAdapter”, add in all the new columns and select the respective data source one at a time, as shown in Figure 1.

Figure_1.PNG

Finally, drag and drop the dataset from the data source on to the form, and execute the form once you have finished. A cross tab report similar to Figure 2 will appear.

Figure_2.PNG

Points of Interest

A simple Pivot table has been created without writing any C# or VB code. The aggregate function used in the Pivot statement was “SUM”. If you need to check the total count you could change it to “COUNT”. It should be pointed out that in normal circumstances, the query window in Visual Studio will not support a Pivot statement. However, in this article, we show that it can be done.

History

None.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
New Zealand New Zealand
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralSome good things are hard to find Pin
heck-28-Oct-08 20:41
heck-28-Oct-08 20:41 
GeneralRe: Some good things are hard to find Pin
TTGOH29-Oct-08 11:48
TTGOH29-Oct-08 11:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.