4

如何使用任何工具在 oracle 中导出和导入 BLOB 数据类型。我想把它作为释放

4

1 回答 1

1

回答,因为即使它是 5 岁的问题,它也有不错的观看次数。

由于这个问题是 5 年前提出的,因此有一个名为 SQLcl 的新工具(http://www.oracle.com/technetwork/developer-tools/sqlcl/overview/index.html

我们将 SQLDEV 中的脚本引擎分解为 cmd 行。SQLDev 和这是基于 java 的,它允许使用 nashorn/javascript 引擎来编写客户端脚本。这是一个选择 3 列的简短示例。ID 只是表 PK ,命名要创建的文件的名称,并包含要从数据库中提取的 BLOB。

script 命令触发此脚本。我将此代码放在下面的名为 blob2file.sql 的文件中

所有这些加起来为零 plsql,零目录,而只是一些混合了 javascript 的 sql 脚本。

script
// issue the sql
// bind if needed but not in this case
var binds = {}
var  ret = util.executeReturnList('select id,name,content from images',binds);

// loop the results
for (i = 0; i < ret.length; i++) {
   // debug messages
    ctx.write( ret[i].ID  + "\t" + ret[i].NAME+ "\n");

   // get the blob stream    
     var blobStream =  ret[i].CONTENT.getBinaryStream(1);

   // get the path/file handle to write to
   // replace as need to write file to another location
     var path = java.nio.file.FileSystems.getDefault().getPath(ret[i].NAME);

   // dump the file stream to the file
     java.nio.file.Files.copy(blobStream,path);
}
/

结果是我的表被清空到文件中(我只有 1 行)。只需像任何普通的 sql 脚本一样运行。

SQL>  @blob2file.sql
1   eclipse.png
blob2file.sql   eclipse.png

SQL> 
于 2018-04-23T18:26:59.470 回答