Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Importieren Sie BLOB (Bild) von Oracle in Hive

Sqoop kann den Blob-Datentyp in Oracle nicht in Hive abbilden. Sie müssen also --map-column-hive COLUMN_BLOB=binary angeben

sqoop import --connect 'jdbc:oracle:thin:@host' --username $USER --password $Password  --table $TABLE  --hive-import --hive-table $HiveTable  --map-column-hive COL_BLOB=binary --delete-target-dir --target-dir $TargetDir  -m 1 -verbose