Large character field sizes in SAS

微笑、不失礼 提交于 2019-12-13 15:57:12

问题


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?

Thanks Rob


回答1:


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.

See RunSubmit.com for more info.



来源:https://stackoverflow.com/questions/2686291/large-character-field-sizes-in-sas

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!