Dear all,
Now I'm facing an issue on "load table" Statement --
The table is -- create table load_test(a binary, b binary);
And the data file like this --
bigdataIQ>head -n 2 test.dat
0x34,0x02
0xbd,0x7F
So my load script is --
load table load_test(
a binary with null byte,
b binary with null byte)
from '/dev/bcp/2cols.dat'
delimited by ','
escapes off
quotes off;
But I found the load plan always shows there was a node named "#37 Parallel Combiner" it looks it should run in parallel mode but everytime the "Max. Active Parallel Threads" always 0... So I'm thinking if my "load table" statement can't lead to a parallel run mode. Is it? -- the load plan is attached
Please kind share your idea on it. Thanks in advance for any help.
Regards
Eisen