将 Excel 电子表格列导入 SQL Server 数据库

2021-12-02 00:00:00 excel import etl sql-server-2008 sql-server

我有一个 Excel 电子表格,我想将选择的列导入到我的 SQL Server 2008 数据库表中.向导没有提供该选项.

I have an Excel spreadsheet that I want to import select columns into my SQL Server 2008 database table. The wizard didn't offer that option.

是否存在任何简单的代码选项?

Do any easy code options exist?

推荐答案

一旦连接到 Sql Server 2005 数据库,从对象资源管理器窗口,右键单击要导入表的数据库.选择任务 -> 导入数据.这是一个简单的工具,允许您将传入的数据映射"到适当的表中.您可以保存脚本以在需要时再次运行.

Once connected to Sql Server 2005 Database, From Object Explorer Window, right click on the database which you want to import table into. Select Tasks -> Import Data. This is a simple tool and allows you to 'map' the incoming data into appropriate table. You can save the scripts to run again when needed.

相关文章