June 1, 2012 at 12:38 am
Hi
I have Values Like this
Project Name WorkType Status TagSetName TagValues
Wrong retainer on Front back Lh FocusTollgate004_ On Track Primary Project Impact Area Quality
Wrong retainer on Front back Lh FocusTollgate004_ On Track Other BBP Metric(s) (Level 2) customer
Wrong retainer on Front back Lh FocusTollgate004_ On Track Other BBP Metric(s) Impacted Quality
Wrong retainer on Front back Lh FocusTollgate004_ On Track Special Initiatives KT - Kepner
Wrong retainer on Front back Lh FocusTollgate004_ On Track Special InitiativesKaizen workshop
In the TagSetName, Special Initiatives is repeated so i want to do tagValues comma separated With Respective tagSetName
Like
Project Name WorkType Status TagSetName TagValues
Wrong retainer on Front back Lh FocusTollgate004_ On Track Special Initiatives KT - Kepner, Kaizen shop
Kaizen workshop
Thanks
June 1, 2012 at 1:36 am
farooq.hbs (6/1/2012)
HiI have Values Like this
Project Name WorkType Status TagSetName TagValues
Wrong retainer on Front back Lh FocusTollgate004_ On Track Primary Project Impact Area Quality
Wrong retainer on Front back Lh FocusTollgate004_ On Track Other BBP Metric(s) (Level 2) customer
Wrong retainer on Front back Lh FocusTollgate004_ On Track Other BBP Metric(s) Impacted Quality
Wrong retainer on Front back Lh FocusTollgate004_ On Track Special Initiatives KT - Kepner
Wrong retainer on Front back Lh FocusTollgate004_ On Track Special InitiativesKaizen workshop
In the TagSetName, Special Initiatives is repeated so i want to do tagValues comma separated With Respective tagSetName
Like
Project Name WorkType Status TagSetName TagValues
Wrong retainer on Front back Lh FocusTollgate004_ On Track Special Initiatives KT - Kepner, Kaizen shop
Kaizen workshop
Thanks
Have a read of this article[/url] about the best way to post sample data and DDL then please post back with the correct details. That way, the unpaid volunteers of this site will find it far easier to help you.
Thanks.
June 1, 2012 at 2:40 am
This might help:
--Creating Table
Create Table Ex
(ProjectName varchar(50),
WorkType varchar(50),
Status varchar(50),
TagSetName varchar(50),
TagValues varchar(50) )
--Inserting Sample Data
Insert Into Ex
Select 'Wrong retainer on Front back Lh Focus','Tollgate004_', 'On Track', 'Primary Project Impact Area', 'Quality'
Union ALL
Select 'Wrong retainer on Front back Lh Focus','Tollgate004_', 'On Track', 'Other BBP Metric(s) (Level 2)', 'customer'
Union ALL
Select 'Wrong retainer on Front back Lh Focus','Tollgate004_', 'On Track', 'Other BBP Metric(s) Impacted', 'Quality'
Union ALL
Select 'Wrong retainer on Front back Lh Focus','Tollgate004_', 'On Track', 'Special Initiatives', 'KT - Kepner'
Union ALL
Select 'Wrong retainer on Front back Lh Focus','Tollgate004_', 'On Track', 'Special Initiatives','Kaizen workshop'
--Query For Your Requirement
;With CTE
As
(Select *, ROW_NUMBER() Over (Partition By TagSetName Order By (Select NULL) ) As rn From Ex)
Select a.ProjectName, a.WorkType, a.Status, a.TagSetName, (a.TagValues+', '+b.TagValues) As TagValues From CTE as a
JOIN CTE as b ON a.TagSetName = b.TagSetName AND b.rn = (a.rn + 1)
June 1, 2012 at 4:19 am
This might help as well
;With CTE
As
(Select *, Count(1) Over (Partition By TagSetName) As rn From Ex)
Select a.ProjectName, a.WorkType, a.Status, a.TagSetName,a.TagValues from CTE a where rn =1
union
Select distinct a.ProjectName, a.WorkType, a.Status, a.TagSetName, (Select TagValues+',' from CTE Where rn = a.rn and rn > 1 FOR XML path('')) Skills
From CTE a where rn > 1
June 1, 2012 at 5:11 am
thankz
But the Concatenated row Repeating two Times with same value
With Tag (WorkId,TagsetId,ProjectName,WorkType,Status,ObjectId,TagSetName ,TagValues)
AS
(
select top 5000 vw.work_id as WorkId ,g.tagset_id as TagsetId ,vw.name as ProjectName,
vw.work_type_code as WorkType,vw.status_current as Status,g.object_id as ObjectId,
g.tagset_name as TagSetName,g.tag_name as TagValues
From View_work vw
Left join view_tag g on g.object_id = vw.work_id
Where is_project = 'Y' and --vw.type_name <> 'Folder' and
vw.work_type_code in('Checkpoint','FileFolder','Organization ',
'ReportFolder','Template','Tollgate001_','Tollgate002_','Tollgate003_','Tollgate004_',
'Tollgate005_','Tollgate007_','Work','Work006_','Tollgate000_','FileFolder','GroupFolder','MasterTask','Milestone')
and vw.status_current in('Canceled' ,'Completed','Deferred','Needs Attention','Not Started','Off Track','On Track ')
)
Select ProjectName,WorkType,Status,TagsetId,ObjectId,TagSetName,Stuff(( SELECT ', ' + CAST(Tag_name AS VARCHAR(MAX))
FROM View_tag m where TagsetId = m.Tagset_id and m.Object_id = ObjectId
FOR XML PATH('') ,TYPE
).value('.','VARCHAR(MAX)')
,1,2,'')as TagValues
FROM Tag
ProjectNameWorkTypeStatusTagsetIdObjectIdTagSetNameTagValues
Wrong retainer on Front back Lh FocusTollgate004_ On Track 1801a2g0000ilai7qoa00000001800m380000inot9tu20000000Special InitiativesKT - Kepner Tregoe Project (from Sigma TRAC), Kaizen workshop
Wrong retainer on Front back Lh FocusTollgate004_ On Track 1801a2g0000ilai7qoa00000001800m380000inot9tu20000000Special InitiativesKT - Kepner Tregoe Project (from Sigma TRAC), Kaizen workshop
[/code]
June 1, 2012 at 5:26 am
I used distinct to avoid duplicates.
But I won't suggest that as well 🙂
June 1, 2012 at 5:42 am
Yup Got the Result ...
"Distinct" was not the Issue But I replaced Left Join To Join Keyword in my Query,....
Query Working Fine
June 1, 2012 at 5:58 am
Great !!!
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply