Import blob through SAS from ORACLE DB(通过 SAS 从 ORACLE DB 导入 blob)
问题描述
祝大家度过美好的一天.我在前一周的工作中遇到了一个巨大的问题.这是交易:
Good time of a day to everyone. I face with a huge problem during my work on previous week. Here ia the deal:
我需要通过 SAS 从 ORACLE 数据库下载 exel 文件 (blob).我正在使用:
I need to download exel file (blob) from ORACLE database through SAS. I am using:
第一步我需要从 oracle 获取数据.我使用的构造(blob文件将近100kb):
First step i need to get data from oracle. I used the construction (blob file is nearly 100kb):
proc sql;
connect to oracle;
create table SASTBL as
select * from connection to oracle (
select dbms_lob.substr(myblobfield,1,32767) as blob_1,
dbms_lob.substr(myblobfield,32768,32767) as blob_2,
dbms_lob.substr(myblobfield,65535,32767) as blob_3,
dbms_lob.substr(myblobfield,97302,32767) as blob_4
from my_tbl;
);
quit;
结果是:
blob_1 = 70020202020202...02
blob_2 = 02020202020...02
blob_3 = 02020202...02
我不明白为什么该字段由02"(整个文件)组成
I do not understand why the field consists from "02"(the whole file)
并且sas中任何变量的长度都是1024(而不是37767)$HEX2024格式.如果我愿意:
And the length of any variable in sas is 1024 (instead of 37767) $HEX2024 format. If I ll take:
dbms_lob.substr(my_blob_field,2000,900) 来自同一个对象,结果将更加类似于事实:blob = "A234ABC4536AE7...."
dbms_lob.substr(my_blob_field,2000,900) from the same object the result will mush more similar to the truth: blob = "A234ABC4536AE7...."
问题是:1. 如何通过 SAS 从 blob 字段中正确获取二进制数据?我的错误是什么?
The question is: 1. how can i get binary data from blob field correctly trough SAS? What is my mistake?
谢谢.
编辑 1:
我得到了信息,但最大字符串是 2000 kb.
I get the information but max string is 2000 kb.
推荐答案
在 CONNECT 语句(或 LIBNAME 语句)上使用 DBMAX_TEXT 选项可获得最多 32,767 个字符.默认可能是 1024.
Use the DBMAX_TEXT option on the CONNECT statement (or a LIBNAME statement) to get up to 32,767 characters. The default is probably 1024.
这篇关于通过 SAS 从 ORACLE DB 导入 blob的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:通过 SAS 从 ORACLE DB 导入 blob
基础教程推荐
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01