db2 - 导出到文件
db2 - export into File
我正在尝试将 db2 中的查询结果导出到文件,但结果如下:
+000000869836.|+00000000000001401.
+000000978137.|+00000000000000511.
我该怎么做才能获得以下结果:
869836.|1401.
978137.|511.
我当前的查询:
EXPORT TO /tmp/tmp.tmp OF del modified by NOCHARDEL coldel|
select
iv.bpd_instance_id,
max(case when alias = 'abc' then INT_VALUE else null end) as A,
max(case when alias = 'xyz' then STRING_VALUE else null end) as X,
from lsw_bpd_instance_variables iv
where bpd_instance_id in ($instancesDB)
group by iv.bpd_instance_id
with ur
DB2 的 EXPORT
实用程序的默认行为是用前导 positive/negative 符号格式化任何 DECIMAL
值并用前导零填充它。要覆盖此行为,请在 MODIFIED BY
子句中指定 DECPLUSBLANK
和 STRIPLZEROS
选项,或者 CAST
在 [=17] 中将 DECIMAL
值指定为其他类型=]声明。
我正在尝试将 db2 中的查询结果导出到文件,但结果如下:
+000000869836.|+00000000000001401.
+000000978137.|+00000000000000511.
我该怎么做才能获得以下结果:
869836.|1401.
978137.|511.
我当前的查询:
EXPORT TO /tmp/tmp.tmp OF del modified by NOCHARDEL coldel|
select
iv.bpd_instance_id,
max(case when alias = 'abc' then INT_VALUE else null end) as A,
max(case when alias = 'xyz' then STRING_VALUE else null end) as X,
from lsw_bpd_instance_variables iv
where bpd_instance_id in ($instancesDB)
group by iv.bpd_instance_id
with ur
DB2 的 EXPORT
实用程序的默认行为是用前导 positive/negative 符号格式化任何 DECIMAL
值并用前导零填充它。要覆盖此行为,请在 MODIFIED BY
子句中指定 DECPLUSBLANK
和 STRIPLZEROS
选项,或者 CAST
在 [=17] 中将 DECIMAL
值指定为其他类型=]声明。