Filemaker 通过 SSIS 到 SQL Server
我正在使用 SSIS 并尝试将数据从 Filelmaker 导入到 SQL Server 中。在解决方案资源管理器中,我右键单击“SSIS 包”并选择“SQL Server 导入和导出向导”。在此过程中,我使用我的 DSN 作为源,SQL Server 作为目标,使用有效的查询从 Filemaker 中提取数据,并设置映射,
每次我尝试运行该包时,都会收到以下消息: “输出列“LastNameFirst”(12)”的长度无效。长度必须在 0 到 4000 之间。
我不太清楚这个错误,但在 ODBC 文档中: http://www.filemaker.com/downloads/pdf/fm9_odbc_jdbc_guide_en.pdf(第 47 页)它指出:
“文本的最大列长度为 100 万个字符,除非您在 FileMaker 中为文本字段指定较小的最大字符数。FileMaker 将空字符串返回为 NULL。”
我认为在尝试将其转换为 varchar 时数据类型太大。但即使在使用 SUBSTR(LastNameFirst, 1, 2000) 查询后,我也会收到相同的错误。
有什么建议吗?
I'm using SSIS and trying to import data from Filelmaker into SQL Server. In the Solution Explorer, I right click on "SSIS Packages" and select SQL Server Import and Export Wizard". During the process, I use my DSN as the source, SQL Server as the destination, use a valid query to pull data from Filemaker, and set the mappings.
Each time I try to run the package, I receive the following message:
The "output column "LastNameFirst" (12)" has a length that is not valide. The length must be between 0 and 4000.
I do not understand this error exactly, but in the documentation for ODBC:
http://www.filemaker.com/downloads/pdf/fm9_odbc_jdbc_guide_en.pdf (page 47) it states:
"The maximum column length of text is 1 million characters, unless you specify a smaller Maximum number of characters for the text field in FileMaker. FileMaker returns empty strings as NULL."
I'm thinking that the data type is too large when trying to convert it to varchar. But even after using a query of SUBSTR(LastNameFirst, 1, 2000), I get the same error.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了这个问题,并且不知道原因,但这些是我用来查找有问题的行的步骤:
- 在 filemaker 中,将数据导出到 CSV
- 在 Excel 中打开 CSV
- 双击 LastNameFirst 列以最大化其宽度
-向下滚动,直到看到“#########”列 - Excel 表示数据太大而无法显示的方式。
我确信有更好的方法,我很想听听!
I had this problem, and don't know the cause but these are the steps I used to find the offending row:
-in filemaker, export the data to CSV
-open the CSV in excel
-double click on the LastNameFirst column to maximize its width
-scroll down until you see a column '#########' -the way excel indicates data that is too large to be displayed.
I'm sure theres a better way, and I'd love to hear it!
你应该使用这个:
You should use this: