如何将数据从 azure TABLESTORAGE tProduction 表移动到开发表?
我已经使用两个连接字符串设置了两个不同的表。现在我想将数据从一个移动到另一个,但我不知道从哪里开始。有其他人为此编写了一些解决方案吗?如果是这样,我真的很感激一些关于从哪里开始的提示/建议。我的桌子存储桌子很小。有些大约有 500-2000 行。我只是想确保数据不会丢失。
请注意,我使用的是表存储,而不是 Sql Azure,
如果您有一些想法,谢谢。
I've set up two different tables with two connection strings. Now I want to move data from one to the other but I'm not sure where to start. Has anyone else coded up some solution for this. If so I would really appreciate some tips/advice on where to start. My tablestorage tables are small. Some are around 500-2000 rows. I would just like to make sure that data does not get lost.
Please note it is tablestorage that I am using and NOT Sql Azure
Thanks if you have some ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只处理几千行,那么这很容易。
在此处下载 TableXplorer:http://clumsyleaf.com/products/tablexplorer
有一个选项可以导出所有数据从表到 XML 或 CSV 文件。获得文件后,使用该文件的导入选项并将其导入到另一个表中。
If you're dealing with only a few thousand rows then this is easy.
Download TableXplorer here: http://clumsyleaf.com/products/tablexplorer
There is an option to export all data from a table to an XML or CSV file. Once you have your file then use the import option with the file and import it into the other table.