Hi,
when doing ts-to-xml using tsxml.cfg I'd like to exlude all tuples which have the file extension .meta like the one in ansprech_aaa_2.meta below. I've tried several types of filters like the one below (and I also use them) but non of them seem to affect the dump file. Any ideas what sort of pattern I could use here?? Or is it better practice to use it in loaddb.cfg ?? Anyway filter is declared in the global section (just below <data-deploy-configuration> ) and is used just before the <destination> tag. TS 5.5.2 and DD 5.5.2.
Marcus
<filter name="ExcludeMetafiles">
<discard>
<like>
<field name="path" match="*\.meta$" />
</like>
</discard>
</filter>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<xml-tuple-data version="2.0.0">
<data-tuple>
<tuple-field name="iw_internal_area">/portal/main/allgemein01/WORKAREA/allgemein1</tuple-field>
<tuple-field name="TeamSite/Templating/PrimaryDocumentType">portal/ansprechpartner</tuple-field>
<tuple-field name="path">ansprech_aaa_2.jsp</tuple-field>
<tuple-field name="TeamSite/Templating/PrimaryPT">ansprechpartner.tpl</tuple-field>
</data-tuple>
<data-tuple>
<tuple-field name="path">ansprech_aaa_2.meta</tuple-field>
<tuple-field name="iw_internal_area">/portal/main/allgemein01/WORKAREA/allgemein1</tuple-field>
<tuple-field name="TeamSite/Templating/PrimaryDCR">ansprech_aaa_2</tuple-field>
</data-tuple>
<data-tuple>
<tuple-field name="iw_internal_area">/portal/main/allgemein01/WORKAREA/allgemein1</tuple-field>
<tuple-field name="TeamSite/Templating/PrimaryDocumentType">portal/ansprechpartner</tuple-field>
<tuple-field name="path">ansprech_aaa_2_druck.jsp</tuple-field>
</data-tuple>
</xml-tuple-data>
Edited by hollis on 07/24/03 11:20 AM (server time).