As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I have some SQL code which needs to read a string from SQLServer database containing XML code. The XML code was not converted properly and the contains '<' and '>' I need to convert these to <> \, however WebFocus thinks these are parm values and prompts me for input value.
Is there a way for me to tell webfocus to just pass the SQL thru?
SQL SQLMSS
select *,PreCertXmlcol.query('//out-of-state-medical-services-request-form/patient-information/subscriber-id="866324406M"'), PreCertXmlcol.query('//out-of-state-medical-services-request-form/patient-information'), PreCertXmlcol.query('//out-of-state-medical-services-request-form/admission-information/admission-date') from ( select ID,convert(xml,replace(replace(convert(nvarchar(max),additional_attributes.query(' for $myxml in //attributes/attribute where $myxml/name="marshalledXml" return $myxml/value/text()
)),'&'+'lt;','<'),'&'+'gt;','>')) as PreCertXmlcol ,additional_attributes from TestMessageCenter.dbo.mc_message where sub_system='Precertification' and ID=2153 and additional_attributes.exist('//attributes/attribute/name="marshalledXml"')=1 ) as t ;
WebFocus Server 7.6.10This message has been edited. Last edited by: Kerry,
WebFOCUS 8.2.02M Windows Server/8.2.02M All Outputs
Its good to know that your know tsql, but this is FOCUS interpreting the code, and the pipe will be evaluated by FOCUS, and not tsql, the pipe only stops FOCUS from trying to evalulate the amper variable. Once that part of the FOCUS interpretation is done the pipe will be missing and the string with the & will be passed to tsql.