Link to home
Start Free TrialLog in
Avatar of mbevilacqua
mbevilacqua

asked on

DB2 Temporary tablespace

We encountered this issue:
[DB2]A temporary table space with sufficient page size does not exist.

By default, we create a temporary tablespace defines as User temporary tablespace. We were able to fix this by adding a System temporary tablespace using WEBMBUFF.

Questions:

What is the differnce between SYSTEM and USER temporary tablespaces?
Why would creating a System versus User temporary tablespace fix this?
CREATE 
PROCEDURE XYZ_TABLESPACES_TMP() 
    BEGIN    
      DECLARE V_COUNT INT DEFAULT 0;
      DECLARE STATEMENT VARCHAR(1000);
      SELECT COUNT(*)  INTO V_COUNT  FROM SYSIBM.SYSTABLESPACES
      WHERE TBSPACE = 'XYZTEMP';
      IF (V_COUNT = 0) THEN
        SET statement =  'CREATE USER TEMPORARY TABLESPACE XYZTEMP PAGESIZE 32K MANAGED BY SYSTEM USING (''XYZTEMP'') BUFFERPOOL  XYZBUFF';
       EXECUTE IMMEDIATE statement; 
    END IF;             
   END
/
 
as
 
CREATE 
PROCEDURE XYZ_TABLESPACES_TMP() 
    BEGIN    
      DECLARE V_COUNT INT DEFAULT 0;
      DECLARE STATEMENT VARCHAR(1000);
      SELECT COUNT(*)  INTO V_COUNT  FROM SYSIBM.SYSTABLESPACES
      WHERE TBSPACE = 'XYZTEMP';
      IF (V_COUNT = 0) THEN
        SET statement =  'CREATE SYSTEM TEMPORARY TABLESPACE XYZTEMP PAGESIZE 32K MANAGED BY SYSTEM USING (''XYZTEMP'') BUFFERPOOL  XYZBUFF';
       EXECUTE IMMEDIATE statement; 
    END IF;             
   END
/

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Kent Olsen
Kent Olsen
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mbevilacqua
mbevilacqua

ASKER

So our applicaiton needs to use 32k pagesizes. Does this mean we need to create a USER 32k temp and a SYSTEM 32k temp?

SQL: select xyzcolumn from tablexyz where xyzcolumn=1 order by xyzcolumn
the best way to find out would to just try it with only the system temp tablespace
if it would work - you don't need the user tablespace
if it won't work, you do need it
Easier said then done. We produce software and ship it to hundreds of customers. We need to know at ship time is it is required. I guess we can do a complete regresion test and see if converting the create from USER to SYSTEM causes any problems, but that is a big task.

The odd thing is that we have only used USER temp space for years. This is the first time we have seen this issue and the requirement for a System temp space.
Hi mbevilacqua,

There's always SYSTEM temp space.  It's just that the default amount is just fine for most installations.

Creating a user temporary table in the SYSTEM temporary space is a bad idea, particularly when you're distributing "shrink wrapped" software and have little control over the user environments.  Better plans are to create another tablespace specifically for the temporary tables or just allow DB2 to manage the space.


Kent
We use regular table spaces with page size 32K to keep our data. So would we need to create system temporary table space with same page size or Is it enough IBM default table space 'TEMPSAPCE1' which is system temporary with page size 4k?
The system temp space should be fine with 4K pages.  It doesn't typically hold user (row) data.


Kent