使用 ADO.NET 将数据表从内存推送到 SQL Server

发布于 2024-09-15 12:06:26 字数 84 浏览 5 评论 0原文

我的内存中有一个从非 SQL 源获取的数据表。
使用 ADO.NET 将其“按原样推入新的 SQL (2005) 服务器表”,最优雅的方法是什么?

I have a datatable in memory that I got from a non SQL source.
What is the most elegant way, using ADO.NET to push it "as is into a new SQL (2005) server table?

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

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

发布评论

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

评论(3

云朵有点甜 2024-09-22 12:06:26

您需要通过一系列步骤来完成此操作。首先,通过一些动态 SQL 创建表。然后,您需要将信息从内存加载到新创建的表中,可能使用BULK INSERT

You'd need to do this as a series of steps. Firstly, creating the table via some dynamic SQL. Then you'd need to load the information from memory into the newly created table, potentially using a BULK INSERT.

后来的我们 2024-09-22 12:06:26

或者在 SQL Server 上创建表,一次读取一行,然后将其添加到表中。

Or create the table on the SQL Server, read one row at a time, and add it to the table.

橙味迷妹 2024-09-22 12:06:26
  • 基于
  • SQLBulk结构CREATE TABLE复制它
  • CREATE TABLE based on the structure
  • SQLBulkCopy it
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文