Documentum DQL query to import a file form cliet machine to repository

久未见 提交于 2019-12-11 03:18:40

问题


Can anyone tell me how to import a document from client machine to documentum repository using only "DQL", below is the command I am using... it's not working thought... The error I am getting is [DM_SYSOBJECT_E_CANT_ACCESS_FILE- Unable to access file due to operating system error.

CREATE abc OBJECT 
set object_name='xyz', 
set folder_title='pqr', 
set doc_subtype_code='XXXX', 
set template_code='00', 
set doc_subtype_nme='abc Documents', 
set isworkflowrequired=1,
set iscreatedfrombiztemplate=0, 
set sec_classification_code='O', 
set acl_domain='myacldomain', 
set acl_name='myacl'
set product_wf_code='0'
LINK '/Cabinet123/MYDocs', 
SETFILE 'C:\mydoc.doc' WITH CONTENT_FORMAT='msw8';

回答1:


According to the documentation the file to upload using setfile must either be local to the Content Server or to network locations visible to the Content Server.



来源:https://stackoverflow.com/questions/10447096/documentum-dql-query-to-import-a-file-form-cliet-machine-to-repository

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!