Probably: The select returned duplicate rows and your table is created as SET table, do a SHOW TABLE MKTNG_PGM_NBR;
If you actually need the duplicates you can override it:CREATE MULTISET TABLE ...
And as you didn't specify a Primary Index it will default to a NUPI on the 1st column MATCHD_CNSMR_PRSNA_ID, you should check if this is acceptable.
Probably: The select returned duplicate rows and your table is created as SET table, do a SHOW TABLE MKTNG_PGM_NBR;
If you actually need the duplicates you can override it:CREATE MULTISET TABLE ...
And as you didn't specify a Primary Index it will default to a NUPI on the 1st column MATCHD_CNSMR_PRSNA_ID, you should check if this is acceptable.
Dieter