Advertisement

06.18.2008 at 05:21AM PDT, ID: 23494861
[x]
Attachment Details

Loop through data in SQL Server store proc

Asked by pratikshahse in SQL Server 2005

Tags: , ,

Below is a proc that I have. after executing it I get 2 rows of XML. I want to loop through each row and perform some tasks on it. How can I loop through different rows in SQL server store procStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
DECLARE @docHandle int
EXEC sp_xml_preparedocument @docHandle OUTPUT, 
'<ClauseGroup>
		<GroupID>1</GroupID>
		<GroupName>Test Group</GroupName>
		<EffectiveDate>1/1/1900 12:00:00 AM</EffectiveDate>
		<ExpirationDate>1/1/1900 12:00:00 AM</ExpirationDate>
		<DeActivateDate>1/1/1900 12:00:00 AM</DeActivateDate>
	 <Clauses>
	  <Clause>
	   <ClauseID>0</ClauseID>
	   <ClauseGroupID>2</ClauseGroupID>
	   <EffectiveDate>1/1/1900 12:00:00 AM</EffectiveDate>
	   <ExpirationDate>1/1/1900 12:00:00 AM</ExpirationDate>
	   <DeActivateDate>1/1/1900 12:00:00 AM</DeActivateDate>
	   <Description></Description>
	  <Operation>
	   <Code>BET</Code>
	  </Operation>
	  <Attribute>
	   <AttributeID>2</AttributeID>
	  </Attribute>
	  <Values>
	   <Value>
	     <value>Test4</value>
	   </Value>
	   <Value>
	     <value>Test5</value>
	   </Value>
	  </Values>
	  </Clause>
	  <Clause>
	   <ClauseID>1</ClauseID>
	   <ClauseGroupID>2</ClauseGroupID>
	   <EffectiveDate>1/1/1900 12:00:00 AM</EffectiveDate>
	   <ExpirationDate>1/1/1900 12:00:00 AM</ExpirationDate>
	   <DeActivateDate>1/1/1900 12:00:00 AM</DeActivateDate>
	   <Description>test</Description>
	  <Operation>
	   <Code>IN</Code>
	  </Operation>
	  <Attribute>
	   <AttributeID>3</AttributeID>
	  </Attribute>
	  <Values>
	   <Value>
	     <value>Test6</value>
	   </Value>
	   <Value>
	     <value>Test7</value>
	   </Value>
	  </Values>
	  </Clause>	
	 </Clauses>
	</ClauseGroup>'
 
Select * 
FROM OPENXML(@docHandle, 'ClauseGroup/Clauses/Clause', 1) 
WITH (Data xml '.')
[+][-]06.18.2008 at 05:24AM PDT, ID: 21812061

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.18.2008 at 05:38AM PDT, ID: 21812156

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.18.2008 at 05:48AM PDT, ID: 21812223

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: SQL Server 2005
Tags: Microsoft, SQL Server, 2005
Sign Up Now!
Solution Provided By: chapmandew
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628