2014-01-28 2 views
0

XML 문서 전체에 걸쳐 복제 된 Field ID = 29의 "Visible"속성 값을 바꾸려고합니다. 는 XML의 예는 다음과 발견 : 나는 다음하지만 성공을 시도XML 속성 값을 바꾸는 중

<Types> 
    <Type ID="4"> 
     <Fields> 
      <Field ID="29" Visible="false"/> 
     </Fields> 
    </Type> 
    <Type ID="5"> 
     <Fields> 
      <Field ID="29" Visible="true"/> 
     </Fields> 
    </Type> 
    <Type ID="6"> 
     <Fields> 
      <Field ID="29" Visible="false"/> 
     </Fields> 
    </Type> 
</Types> 

:

update SF 
set [Static_Form_Properties].modify('replace value of (/Field[@ID=29]/@Visible)[1] with ("true")') 
from wf_workflow_step_form SF 

어떤 도움 greately 감상 할 수있다. 감사

답변

관련 문제