Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my project there are two datatables dtFail and dtFailed (dtFailed has nothing but column names declarations). dtFail has duplicate "EmployeeName" column values. so i took a dataview dvFail and did the process to make them distinct as shown in the below code:

dtFail

enter image description here

I tried the below code:

   DataView dvFail = new DataView(dtFail);
   dtFail = dvFail.ToTable(true, "EmployeeName"); //showing only one column in dtFail

dtFailed (only one column)

enter image description here

If i do like below

   DataView dvFail = new DataView(dtFail);
   dtFail = dvFail.ToTable(true, "EmployeeName","EmployeeRole","Status");

dtFailed (showing but with duplicate rows)

enter image description here

Then the datatable dtFailed is storing duplicate "EmployeeName" also.

Please Help
Thanks in Advance.

share|improve this question
Need more info - can you paste some sample data showing what is the data in your dvFail table? – Sachin Shanbhag Oct 20 '12 at 8:01
@SachinShanbhag check my edited question – Mr_Green Oct 20 '12 at 8:15

1 Answer

How you can show all columns of a table with distinct column. Assume you have two employee with same name then you will get two records for it and get non distinct column will break distinct of records returned. In the example give above Ravaider and Sainath have two values of third column that is cause of repeated names. Removing this column from column retrieved will make the result set unique with respect to name. This article explains the distinct.

share|improve this answer
then how to do them distinct and show all columns? please help – Mr_Green Oct 20 '12 at 8:01
Select the column whose distinct values you want. – Adil Oct 20 '12 at 8:04
Please check my edited question. I am doing this using XML. I dont know SQL – Mr_Green Oct 20 '12 at 8:10
Ravinder is repeated due to third coulumn values names not matching and roles not matching. Exlcuding the third column from distinct will bring one row. – Adil Oct 20 '12 at 8:15
But i need the third column also in my datatable. anyway to do this? keeping the "employeenames" distinct. – Mr_Green Oct 20 '12 at 8:17
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.