将现有文档系统迁移到Sharepoint;这有多难?
我有一个名为 eDrawer 的文档系统(由 LSSP Corp 提供)。我们的系统中有大约 100,000 个文档。它可以导出到文件夹结构,并且对于每个导出的 PDF,它将导出一个包含元数据的文本文件。从理论上讲,一切都可以自动导入到另一个系统中。
我有一些 .NET 背景,但还没有在 Sharepoint 中进行开发。
我在这里看什么?没什么大不了的?不可能的?或者什么?
我认为共享点解决方案可以以某种方式遍历目录结构中的文件,获取文件中的元数据并将记录插入库中。
对此的任何想法都非常感激。我正在寻求这方面的咨询,并试图权衡其成本与学习如何自己编码的成本。
谢谢你!
I have a document system called eDrawer (by LSSP Corp). We have around 100,000 documents in this system. It can export into a folder structure, and with each exported PDF, it will export a text file which has the metadata. Theorhetically, everthing is there for automating an import into another system.
I have some .NET background, but havne't developed in Sharepoint yet.
What am I looking at here? Not a big deal? Impossible? or what?
I am thinking that somehow a sharepoint solution could iterate through the files in the directory structure, pickup the metadata in the files and insert the records into the library.
Any thoughts on this greatly appreciated. I am seeking out consulting on this, and trying to weight the cost of that with the cost of learning how to code it myself.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SharePoint 有一个非常全面的模型,用于使用其内部对象模型上传文件和元数据。 这个开源工具可以做到这一点。
真正的问题始终是未来的计划。小事情稍后可能会再次困扰您。例如,默认情况下,查看文档库的人只会 获取前 5000 项。
阅读白皮书:在 Office SharePoint Server 中使用大型列表2007 年 在你开始之前。
我还建议您计划并实现一两个自定义内容类型数据。
因此,技术部分并不太难,但如果您从头开始使用 SharePoint,则规划需要做一些工作和大量阅读。
不要忘记计划搜索。
SharePoint has a pretty comprehensive model for uploading files and metadata using its internal object model. This open source tool does it.
The real issue is always the planning ahead. Little things can come back to haunt you later. Such as the fact that by default someone viewing a document library will only get back the first 5000 items.
Read the White paper: Working with largs lists in Office SharePoint Server 2007 before you start.
I would also reccommend you plan and implement a custom content type or two for the data.
So the technical part is not too hard, but the planning requires a little work and quite a bit of reading if you are coming into SharePoint from scratch.
Don't forget to plan for search.