将 SQL Server 2008 R2 数据库导出到 Excel 2007 时出错
我试图将 SQL Server 2008 R2 数据库导出到 Excel 2007。我使用了 SQL Server Management Studio 中的导出向导。我使用查询导出表的某些列。我检查了查询(看到解析它的结果),结果很好。但在REVIEW DATA TYPE MAPPING
上它显示了错误通知。它正在将 varchar
转换为 LongText
。但是,当我执行该包时,它无法运行,显示诸如准备执行
、预执行
、执行<等步骤的
失败
状态/代码> .错误信息是这样的
错误 0xc002f210:准备 SQL 任务 1:执行查询“CREATE TABLE
查询
(id
Long,sku
LongText...”失败,并出现以下错误:“来自外部数据库驱动程序的意外错误 (1309)。”。可能的失败 原因:查询有问题,“ResultSet”属性未设置 正确、参数设置不正确或未建立连接 正确。
(SQL Server导入和导出向导)
有人知道出了什么问题吗?
I was trying to export SQL Server 2008 R2 database to Excel 2007. I used the export wizard in SQL Server Management Studio. I used a query to export some columns of a table. I checked the query (saw the result of parsing it) and it was good. But on the REVIEW DATA TYPE MAPPING
it showed error notifications. It was converting varchar
to LongText
. But when I executed the package it failed to run showing fail
status for steps like prepare for execute
,pre-execute
,execute
. the error message is like this
Error 0xc002f210: Preparation SQL Task 1: Executing the query "CREATE TABLE
Query
(id
Long,sku
LongText..." failed with the following error: "Unexpected error from external database driver (1309).". Possible failure
reasons: Problems with the query, "ResultSet" property not set
correctly, parameters not set correctly, or connection not established
correctly.
(SQL Server Import and Export Wizard)
Someone has a clue whats wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是一个理想的答案(我不知道这个问题的原因是什么),但我能够通过将 Excel 工作表保存为 97-03 格式并提取到该格式来绕过此错误。
Not an ideal answer (I have no idea what the cause of this problem is) but I was able to bypass this error by saving the excel sheet to 97-03 format and extracting to that.