davedavedave
IS-IT--Management
Hello All:
Came across a problem and am wondering if anyone may have seen this before. I have a multiple pass query and the first pass is as follows:
create volatile table ZZTBE050ENHMQ000, no fallback, no log(
Some_Thing SMALLINT)
primary index (Some_Thing) on commit preserve rows
;insert into ZZTBE050ENHMQ000
select distinct a11.Some_Thing Some_Thing
from Some_Table a11
where a11.some_condition in ('Y')
Later in the query, when another pass is attempting to going on pass 1, pass 1's name has been shortened to ZZMQ00.
All other tables in this query use the short name for the volatile tables except for the first pass - anyone seen this before?
Came across a problem and am wondering if anyone may have seen this before. I have a multiple pass query and the first pass is as follows:
create volatile table ZZTBE050ENHMQ000, no fallback, no log(
Some_Thing SMALLINT)
primary index (Some_Thing) on commit preserve rows
;insert into ZZTBE050ENHMQ000
select distinct a11.Some_Thing Some_Thing
from Some_Table a11
where a11.some_condition in ('Y')
Later in the query, when another pass is attempting to going on pass 1, pass 1's name has been shortened to ZZMQ00.
All other tables in this query use the short name for the volatile tables except for the first pass - anyone seen this before?