上传 blob 文件以解析它并在 sql azure 中插入行
对于大学的一门科目,我需要使用 Windows Azure
。请注意,我是 Java 开发人员,而且是 Windows 本身和 cs 的新手。
我的项目非常简单。我要做一个 Layar 服务器。
我已经有一个 Service
,它返回 json 格式的模拟兴趣点。现在我想在 sql azure 数据库中进行大量插入,以便随后进行空间搜索。
我在想:
- 创建一个包含所有行的 cvs 文件。
- 将其上传为 blob。
- 使用
辅助角色
解析它并将其插入到 sql azure 数据库中。
问题:
- 您认为这是正确的做法吗?
- 简历还好吗?
- 你用什么来大量插入sql azure?
- 有没有办法“注释”我的模型类以在我的数据库中创建实体?我应该手动进行映射吗?
For one subject in college I need to use Windows Azure
. Notice that I am Java dev and a total newbie to Windows itself and cs.
My project is quite simple. I am going to do a Layar server.
I already have a Service
which returs a mocked point of interest in json format. Now I would like to do my massive insert in the sql azure db to do spatial searches afterwards.
I was thinking of:
- Creating a cvs file with all rows.
- Upload it as blob.
- Parse it with a
Worker role
and insert it in the sql azure db.
Questions:
- Do you think this is the correct approach?
- Is cvs fine?
- What do you use for a massive insertion to sql azure?
- Is there a way to "Annotate" my model class to create an entity in my db? Should I do the mapping by hand?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将数据导入 sql azure 有多种方法,此处:http://blogs.msdn.com/b/sqlcat/archive/2010/07/30/loading-data-to-sql-azure-the-fast- way.aspx
您基本上有以下选项:
There are various ways to import data into sql azure, here: http://blogs.msdn.com/b/sqlcat/archive/2010/07/30/loading-data-to-sql-azure-the-fast-way.aspx
You have basically the following options: