Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
5k views

SQL Server - Dynamic PIVOT Table - SQL Injection

Sorry for the long question but this contains all the SQL I've used to test the scenario to hopefully make it clear as to what I'm doing. I'm build up some dynamic SQL to produce a PIVOT table in SQL ...
4
votes
1answer
275 views

Pivoting a table in SQL Server 2005 to contain same column multiple times

I need to pivot the following table named tblGameRoleName - Game Role Name VolleyBall Coach Sujatha VolleyBall Player Rajendran VolleyBall Player Juno VolleyBall Player Indira ...
2
votes
2answers
76 views

transposing a table

Hi I would like to rotate a full table: LANGUAGE litAccept litDelete litErrorMsg .............. ------------------------------------------------- SPANISH Accept Delete Error has ocurred ...
2
votes
2answers
110 views

display rows as colum

I want to display rows as column in SQL Server. My table looks like this: images_id item_id images_name ------------------------------- 1 1 image1.jpg 2 1 ...
1
vote
2answers
190 views

Dynamic Pivot on sql data

I have two tables as shown below The master Table ID keyword_tags ----------- --------------------------------------------- 10932 international foo data and a child table(join ...
1
vote
1answer
276 views

Crosstab/Pivot query in TSQL on nvarchar columns

I have a Table1: ID Property 1 Name 2 City 3 Designation and Table2: ID RecordID Table1ID Value 1 1 1 David 2 1 2 Tokyo 3 2 1 Scott ...
1
vote
1answer
791 views

Select row data as ColumnName and Value

I have a history table and I need to select the values from this table in ColumnName, ColumnValue form. I am using SQL Server 2008 and I wasn’t sure if I could use the PIVOT function to accomplish ...
1
vote
2answers
4k views

SQL Dynamic Pivot - how to order columns

I'm working on a dynamic pivot query on a table that contains: OID - OrderID Size - size of the product BucketNum - the order that the sizes should go quantity - how many ordered The size ...
1
vote
1answer
509 views

How to generate Pivot table in ExcelSheet Programatically

I am required to generate a Pivot table in MS Excel(not in Open Office) dynamically as per the User's query. I am programing in java and MySql(DB),so cant use the windows or MS object directly that's ...
1
vote
1answer
279 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 ...
0
votes
1answer
2k views

How to use PIVOT in SQL Server 2005 Stored Procedure Joining Two Views

Good Morning, I have 2 views: ICCUDays which contains one record per account with fields ACCOUNT and ICCUDays, ICCUEnctrSelectedRevCatsDirCost which contains multiple records per account with fields ...
0
votes
1answer
184 views

How do I pivot dynamically

I have two tables; Leads, Territories and Referrers. Lead has columns: ID, Name, TerritoryId Referrers has: ID, LeadId, Name Territory has: ID and Name A lead always relates to a territory and a ...