- SQL code
create tabel test_table{ ID INT primary key not null, file1 blob(102400), file2 blob(102400), file3 blob(102400)}
如果按照上面的方式建表,怎样往表里面 load/import 数据?
如果表中只有一个blob字段没有问题,用 load from ***.txt of del lobs from /filepath modified by lobsinfile insert to test_table就可以了,但是如果有多个blob字段的话,如果还用这个命令的话,发现只在表的第一个blob的字段插入
本人刚接触db2不久,那位大侠指点一下,谢谢
------解决方案--------------------------------------------------------
method