1
vote
1answer
44 views

TSql Complex Pivot

I have a table like this... LEVEL Action Date User -------------------------------------------------- 1 Approve 01/01/2013 User1 2 ...
2
votes
1answer
334 views

Dynamic Pivot Columns in SQL Server

I have a table named Property with following columns in SQL Server: Id Name there are some property in this table that certain object in other table should give value to it. Id Object_Id ...
1
vote
1answer
89 views

Creating a pivot table in T-SQL?

I could really use some help creating a pivot table. I have data in some rows that instead need to be appear in columns, juxtaposed next to values in other records. The data is currently in the ...
2
votes
1answer
45 views

How can I reformat a query result from 2 to 5 cols. Col1 'time' has up to 4 occurrences & Col2 'names' needs to be listed adjacent to correct time

I have a query that returns 2 columns, 1 being 'time' which is not unique and may have up to 4 occurrences. The 2nd column is a list of 'names'. If need be I can easily add a third field which is ...
1
vote
1answer
305 views

Subtracting column totals with pivot table SQL Server 2008

I am using the following pivot table to calculate sales per month. mon_pay_amount is used for the the payment amount. I also have a column in the tbl_orders table which contains any discount applied ...
1
vote
1answer
154 views

SQL get count grouped by week and type given a date interval

Given a table of projects with start and end dates as well as a region that they are taking place, I am trying to get my result to output the number of active projects per week over a given interval ...
0
votes
1answer
1k views

Simple Pivot sample

I need the a report of all masterid's but it may only be one on a row.. I know that's a simple thing to do but I can't figure out the syntax correctly. I attached the data how its stored in SQL ...
0
votes
3answers
539 views

Pivoting with Sum function in tsql

I have data in following format Client Business Unit Year Quarter USD Amt BalckRock Pricing 2010 Q1 234 BalckRock Pricing 2010 Q2 343 ...
1
vote
2answers
635 views

Pivot or Transpose SQL Server 2005 table data without row-by-row processing

Is it possible to do the following in SQL Server 2005 without row-by-row processing? If so, how? :) My table is like this: ╔════════════╦═══════════╦════════════╗ ║ CustomerID ║ FirstName ║ ...
2
votes
1answer
143 views

Can I use PIVOT without the brackets?

PIVOT ( count(DueCount) FOR dueLibraries.s_folder IN ([Assembly Report-TUL],[Balance-TUL],[BOM-TUL],[Hydrostatic-TUL],[Inspection-TUL],[IOM ...
3
votes
1answer
514 views

how do i create a (temporary?) stored procedure to assist making a summary view?

I have view table that looks like this: And I started to create a view to summarize by status for each currency: WITH C AS (SELECT * FROM CampaignsPublisherReportSummary) SELECT 'Total' T, ...
0
votes
1answer
584 views

Pivot Table query from SQL tables gives error - sometimes

Running Excel 2010 with PowerPivot 10.50.1747.0, accessing SQL Server 2005 SP2. I am modifying an Excel pivot table. It gets its data from a SQL table, via a query. I am making changes to the query ...
1
vote
1answer
434 views

Populate Pivot Table from a Comma Delimited Field in a Data Flow Task in SSIS

This is my 1st post, so be gentle :). I am building an SSIS package to collect information on jobs running throughout the enterprise at work. The goal is to have tables filled with info on Servers, ...
0
votes
1answer
917 views

SQL Pivot for multiple rows…CONFUSED?

Okay, I have not been doing SQL for a while. This is the most in depth I have had to get. Basically I have a to pivot a table and then break it up depending on the dates. Right now I have a ...
0
votes
1answer
397 views

T-Sql - Pivot Error

I have the following code in a T-Sql query, I am getting the following error message and I am not really sure what is causing the error. I am writing the Pivot statement to be dynamic b/c I do not ...
1
vote
1answer
261 views

SQL Pivot Tables - Copy Excel Functionality

Let's say I have a table like this: Task Type Variable Hours Duration One A X 10 5 One A Y 40 15 One B X 100 29 Two A ...
0
votes
2answers
1k views

TSQL - How to join 1..* from multiple tables in one resultset?

A location table record has two address id's - mailing and business addressID that refer to an address table. Thus, the address table will contain up to two records for a given addressID. Given a ...
1
vote
1answer
521 views

Query SQL Server 2005 Database Table From Excel Spreadsheet

Scenario I have a database made up of 4 columns and 6 million rows. I want to be able to be able to use Excel to query this data in the same way in which I can query it using the Sql Server ...
1
vote
1answer
485 views

Help needed with Dynamic Pivoting in SQL2005

I have a table of name value pairs where I am storing tags: TAGID | NAME | VALUE I have a table of 'Things' this tags apply to THINGID | TAGID I need a query to generate a resultSet were the ...