42838(-284)[IBM][CLI Driver][DB2/AIX64] SQL0284N The table was not created because the table space "IN_MYNAME" following the clause "IN" is a "LARGE" table space. SQLSTATE=42838
(0.10 secs)
This is the error which i am getting while trying to create a global temporary table.
DECLARE GLOBAL TEMPORARY TABLE temp_lost_sales (
pdt_ky integer not null,
sum_lost_sls_un it_qty integer not null,
sum_lost_sls_lc ns integer not null,
primary_dc_numb er integer not null
) not logged
in IN_MY_NAME
partitioning key(pdt_ky)
on commit preserve rows;
Can anyone suggest wht went wrong in this.
(0.10 secs)
This is the error which i am getting while trying to create a global temporary table.
DECLARE GLOBAL TEMPORARY TABLE temp_lost_sales (
pdt_ky integer not null,
sum_lost_sls_un it_qty integer not null,
sum_lost_sls_lc ns integer not null,
primary_dc_numb er integer not null
) not logged
in IN_MY_NAME
partitioning key(pdt_ky)
on commit preserve rows;
Can anyone suggest wht went wrong in this.
Comment