上传 blob 文件以解析它并在 sql azure 中插入行

发布于 2024-10-05 00:42:48 字数 531 浏览 1 评论 0原文

对于大学的一门科目,我需要使用 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 技术交流群。

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

发布评论

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

评论(1

落花随流水 2024-10-12 00:42:48

将数据导入 sql azure 有多种方法,此处:http://blogs.msdn.com/b/sqlcat/archive/2010/07/30/loading-data-to-sql-azure-the-fast- way.aspx

您基本上有以下选项:

  • SQL Server BCP 实用程序、
  • SQL Server Integration Services (SSIS)
  • 导入和导出数据以及 SQL Server Studio (SSMS)。
  • 批量复制API

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:

  • SQL Server BCP Utility,
  • SQL Server Integration Services (SSIS)
  • Import and Export Data and SQL Server Studio (SSMS).
  • Bulk Copy API
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文