将 sharepoint 2007 中的调查导出到不同的网站集

发布于 2024-11-12 05:33:13 字数 133 浏览 1 评论 0原文

我正在尝试将调查导出到 MOSS 2007 中的不同网站集。我尝试将调查导出为模板并基于该模板创建调查。问题是我需要保留有关调查的元数据。 (即谁提交了每个提交内容。)。当我使用此方法时,看起来好像我提交了每个调查项目。

有什么想法吗?

I am trying to export a survey to a different site collection in MOSS 2007. I have tried to export the survey as a template and create the survey based on that template. The catch is that I need to preserve the metadata about the survey. (ie. who submitted each submission.). When I use this method it appears as if I submitted each survey item.

Any ideas?

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

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

发布评论

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

评论(1

猫七 2024-11-19 05:33:13

对于一次性的事情,您可以使用 Gary Lapointes stsadm 扩展来导入/导出列表: http://blog.falchionconsulting.com/index.php/2007/09/importexportcopy-lists/

导出

以下是如何导出的示例
根站点的文档列表
收藏:

 stsadm –o gl-exportlist -url
http://intranet/Documents/Forms/AllItems.aspx”
-文件名“c:\ docs” -includeusersecurity -版本4 -nofilecompression

进口

以下是如何导入的示例
上面我们导出的文档列表
并重新定位所有指向的链接
原始文件,以便他们
现在指向新文档(注意
就像内置导入一样
如果您指定操作
nofilecompression 为您导出
还必须为导入指定它):

 stsadm –o gl-importlist -url "http://teamsites/" -filename
 “c:\docs”-includeusersecurity
 -updateversions 2 -nofilecompression -retargetlinks -sourceurl“http://intranet/Documents/Forms/AllItems.aspx”

注意:要使用这些命令,您必须下载并安装它们。

For a one-time thing you can use Gary Lapointes stsadm extensions to import/export list: http://blog.falchionconsulting.com/index.php/2007/09/importexportcopy-lists/

Exporting

Here’s an example of how to export the
Documents list from the root site
collection:

 stsadm –o gl-exportlist -url
http://intranet/Documents/Forms/AllItems.aspx"
-filename "c:\docs" -includeusersecurity -versions 4 -nofilecompression

Importing

Here’s an example of how to import the
Documents list that we exported above
and re-target any links pointing to
the original documents so that they
now point to the new documents (note
that just like the built in import
operation if you specify
nofilecompression for the export you
must also specify it for the import):

     stsadm –o gl-importlist -url "http://teamsites/" -filename
 "c:\docs" -includeusersecurity
 -updateversions 2 -nofilecompression -retargetlinks -sourceurl "http://intranet/Documents/Forms/AllItems.aspx"

Note: To use these commands You must download and install them.

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