Tagged Questions

2
votes
2answers
1k views

TSQL - Help with UNPIVOT

I am transforming data from this legacy table: Phones(ID int, PhoneNumber, IsCell bit, IsDeskPhone bit, IsPager bit, IsFax bit) These bit fields are not nullables and, potentially, all four bit ...
1
vote
1answer
80 views

using a sub-query to populate unpivot columns list

I currently do not have access to a server to test this out on, but how would I go about doing something like the following UNPIVOT (X for XY IN ( SELECT column_name AS [XY] FROM ...
1
vote
2answers
69 views

sql server unpivoting table

I'm having trouble trying to unpivot the following table. | operation | ...other columns... | A1 | B1 | C1 | A2 | B2 | C2 | A3 | B3 | C3 | ... | into something like this... | operation | ...
0
votes
1answer
35 views

How to tell SSIS unpivot to make rows even when values is null

I have this flat file that I import and it needs to be unpivoted. All works well except that I would like that the unpivot makes the rows even is the value is null. I don't want to resort to some ...
0
votes
1answer
22 views

TSQL UNPIVOT for months + year column to date

I have this table structure in SQL Server 2008: Columns: PersonID, DOSE1, DOSE2, DOSE3, ..... DOSE12, YEAR example row: 123, 0.1, 0.0, 0.5, ..... 0.7, 2008 So basically I have a column ...
0
votes
1answer
1k views

t-sql most efficient row to column? crosstab for xml path, pivot

I am looking for the most performant way to turn rows into columns. I have a requirement to output the contents of the db (not actual schema below, but concept is similar) in both fixed width and ...
0
votes
1answer
530 views

Unpivot vs. Union queries in T-SQL 2008

Warning: This is a long question The database that I am pulling data from has the table structure like this Table: ClientSales ClientSalesId int identity (1, 1) (PK) ClientId int (FK) ...