I have a 2007 SharePoint site called Beta. On Beta, I have a custom List called MapData. This is a custom list of data that a webpart reads from. Data has been typed into Beta to make开发者_JAVA百科 sure the webpart works correctly.
In production, called Prod, I have that same List called MapData except it has old values. How can I copy the data from one site to another. Beta and Prod are on different servers. I would like to do this without writing C# or something. Is it possible use the command line to just backup that list and restore it on a different server or possibly use Sharepoint designer?
The following options are not without drawbacks, but they are codeless:
- If the list is not too large, you can save it as a template, copy the .stp file from Beta to Prod, and create a new list based on the template.
- STSADM has export/import
- Gary LaPointe's custom STSADM command for this job: http://stsadm.blogspot.com/2007/11/import-export-copy-and-delete-lists.html
I'm actually looking to sync the two lists. I need one to be the data that the public can see, while the other (parent list) has all of the public and private data.
精彩评论