如何摆脱“/”在 Documentum DFC/DFS 中的文档名称中

发布于 2024-09-26 15:49:31 字数 102 浏览 1 评论 0原文

当您想使用 DFS 或 DFC 通过 Documentum 中的对象路径检索“/Templates/Blank Access 97 / 2000 Database”等文档时,如何转义“/”?

How to escape "/" when you want to retrieve document like "/Templates/Blank Access 97 / 2000 Database" by object path in Documentum using DFS or DFC?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

糖果控 2024-10-03 15:49:31

我注意到您也在 http://developer.emc.com 上发帖。不确定您是否看到了回复,但我相信这是满足您要求的唯一方法。或者,您可以使用 DQL 查询它,然后使用历史记录或对象 ID 通过 DFS/DFC 获取它。

session.getObjectByQualification("dm_document where FOLDER('/Templates') and object_name='Blank Access 97 / 2000 Database'");

看起来对象名称没有这个限制。例如,当我使用以下命令查询我的存储库时,我会得到大量结果:

select * from nlrb_document where title like '% / %'

I noticed you posted on http://developer.emc.com as well. Not sure if you saw the response, but I believe it is the only way to do what you are asking for. Alternatively, you could query for it using DQL and then use the Chronicle or Object ID to get it with DFS/DFC.

session.getObjectByQualification("dm_document where FOLDER('/Templates') and object_name='Blank Access 97 / 2000 Database'");

It looks like object names do not have this restriction. For instance, when I query my repository with the following, I get loads of results:

select * from nlrb_document where title like '% / %'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文