MarkLogic 版本 9.0-6.2
mlcp 版本 9.0.6
我有一个客户集合,每个文档都有一个客户根节点,如下所示。
<customer>
<customerId>123</customerId>
....
</customer>
我需要将集合中的所有文档导出到一个名为 customerinfo 的新根目录下的单个输出文件中
<customerInfo>
<customer>
<customerId>123</customerId>
....
</customer>
<customer>
<customerId>456</customerId>
....
</customer>
</customerInfo>
使用下面的代码,我可以将集合导出为目录下的单个文档。
mlcp.sh export -ssl \
-host localhost \
-port 8010 \
-username uname \
-password pword \
-mode local \
-output_file_path /test/TestFiles/customer \
-collection_filter customer \
-output_type document
是否可以在一个新的根节点下将输出聚合到一个文档中?