Large character field sizes in SAS(SAS 中的大字符字段大小)
问题描述
我正在尝试通过 SAS ODBC 直通从 MySQL 表中导入一个大型 blob 字段.该字段大于 SAS 中允许的最大长度.根据 SAS 9.2 文档,字符类型字段的最大长度为 32k.有没有人有在 SAS 中存储大字符字段的经验?除了将其分解为更小的子字符串之外,还有什么建议吗?
I am trying to import a large blob field from a MySQL table via SAS ODBC passthrough. The field is larger than the maximum length allowed in SAS. According to SAS 9.2 documentation character type fields can have a maximum length of 32k. Has anyone had experience storing large character fields in SAS? Any suggestions other than the obvious one of breaking it down into smaller substrings?
谢谢抢
推荐答案
如果您确实需要对所有 32K 数据进行操作,我会将其导入多个列并使用数组随时迭代这些列您需要进行处理.
If you REALLY do need all 32K of that data to operate on, I would import it into more than one column and use arrays to iterate over those columns any time you need to do processing.
查看 RunSubmit.com更多信息.
这篇关于SAS 中的大字符字段大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SAS 中的大字符字段大小
基础教程推荐
- 是否可以执行按位分组功能? 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 无法解决整理冲突 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 在 SQL 中连接多个表 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
