create user temporary tablespace fred
managed by database
using
(
file 'c:\db2\tempfred\fred1' 1000
);
grant use of tablespace fred to public;
source sql cookbook
I was then able to create Global temporary table,
a file c:\db2\tempfred\fred1 with size 4k has been created
Though I did this ? My question now is what is 1000 here.