MarkLogic版本-9.0-6.2
当我通过企业调度程序Zena(类似于Control-M)运行下面的mlcp代码(TestLoad.sh)时,即使mlcp成功完成并且所有记录都被提取到STAGING DB中,Zena作业也失败了。 / p>
Command '"./TestLoad.sh"'
failed with return code 0 and error message
#!/bin/bash
mlcp.sh import -ssl \
-host localhost \
-port 8010 \
-username uname \
-password pwd \
-mode local \
-input_file_path /inputfilepath/test \
-input_file_type documents \
-aggregate_record_namespace "http://new.webservice.namespace" \
-output_collections test \
-output_uri_prefix /test/ \
-transform_module /ext/transform.sjs
我在bash脚本的末尾添加了“退出0”,但仍然收到相同的失败消息。
我可以在mlcp脚本中处理吗?