Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rrchowdhary

  1. rrchowdhary

    How to create seperate XSD files for each class to send with WSDL

    Hi I am developing a WCF service in .net and would like to give the wsdl file to the customer who can consume our service. I successfully Generated the wsdl which includes the following xsd import statements <xsd:import schemaLocation="https://URL/Service-v1.svc?xsd=xsd1" namespace="Service-v1"...
  2. rrchowdhary

    How to Parse XML in to tree structure

    Hi All Can any one please point me in the right direction to have a class in C# which can parses XML string in to a tree structure without using XML Libraries - both input and output should be in memory Many Thanks RR
  3. rrchowdhary

    Case in Where clause

    Thanks r937 This worked like a charm. What I am trying to do is get all the filters matching perticular @SectionFilter and this is being used in a stored proc.
  4. rrchowdhary

    Case in Where clause

    Hi all I am struggling to get this query right but without any success. Any help would be really helpful here is my query SELECT * FROM tb_filters WHERE Id=@filterId AND CASE @SectionFilter WHEN 'NeedsAndRisks' THEN sq.NeedsAndRisks IN(SELECT item from dbo.fnSplit(@ScoreFilter, ','))...
  5. rrchowdhary

    Group by Rows in to columns

    Hi markros Thanks for your reply, but I am not looking for a group by solution, as I just need to get the data in the following format Country ID Company QuestionID Buildings(300) Machinery(301) AverageStock(302) ThirdParty(303) Mexico E627 Mexico 300...
  6. rrchowdhary

    Group by Rows in to columns

    Hi experts I am struggling to get my query right, as currently I am getting the following output, but what I am trying for is to get all my data in to the single rows. Could any one please shed some light and point me in the right direction. Many Thanks Country ID Company QuestionID...
  7. rrchowdhary

    Query to return count using group by?

    you are right george, that's why i have used the query you have mentioned earlier, as i had to query the DB for nearly 500000 records..
  8. rrchowdhary

    Query to return count using group by?

    This is what i have written initially and i am sure i understand your query SELECT Locationid FROM TableB WHERE Locationid in ( SELECT Locationid FROM TableA ) GROUP BY Locationid HAVING count(TableA.documentId) < 5 Thanks
  9. rrchowdhary

    Query to return count using group by?

    Thanks George.. This works perfectly..
  10. rrchowdhary

    Query to return count using group by?

    I am having trouble getting the count of records from tableA I need to find the LocationId whose count is < 5 here is the Sample Data TableA ======= LocationId 1 2 3 TableB ======= LocationId DocumentId 1 1000 1 1001 1 1002 1 1003 1 1004 2 1005 2 1006 2 1007 2 1008 2 1009 I...
  11. rrchowdhary

    Help writing the stored procedure to get the following output?

    Thanks vongrunt, What i have done to get Resources for a perticular ResourceclassId is to add where class in the Final select statement. select * from #results where ResourceClassID=@ResourceclasId order by ResourceclassID, ResourceID you are right it is not that efficient to process all the...
  12. rrchowdhary

    Help writing the stored procedure to get the following output?

    Hi vongrunt, I did not quite get the first statement in the while loop(in your query).Can you please give me an idea What exactly it is holding the information.I think the logic lies in that statement. and also i have requested in one of the reply to, is there any way we could modify the query...
  13. rrchowdhary

    Help writing the stored procedure to get the following output?

    umm..unless i get this solution right i can't put my mind to what i am typing. that's right..it's my mistake
  14. rrchowdhary

    Help writing the stored procedure to get the following output?

    Type Difference {1, 2} and {2, 3} should return nothing as the Definition says We should get the Resources which belongs to ClassA but does not belong to classB and also DiffA and DiffB columns belongs to Resourceclass table

Part and Inventory Search

Back
Top