Create the Spool Reserve Database | Make Space for Queries | Teradata Vantage - Setting Up the Spool Reserve Database - Teradata Vantage

Configuring Teradata Vantageā„¢ After Installation

Product
Teradata Vantage
Release Number
2.2
Published
January 2021
Language
English (United States)
Last Update
2021-05-08
dita:mapPath
gta1588198788318.ditamap
dita:ditavalPath
dby1605127568110.ditaval
dita:id
B700-4014
Product Category
Analytical Ecosystem
Software
Teradata Vantage
Running queries need temporary work space, called spool space. Teradata strongly recommends creating one large area that all users can draw from called the spool reserve database. This space will never hold data. It should use 20-30% of the maximum permanent space (MaxPerm) held by DBC.

To create the spool reserve database, perform the following steps:

  1. Log on as DBC.
  2. Determine the MaxPerm for DBC by running this request:
    SELECT sum(maxperm)
    FROM DBC.DiskSpaceV WHERE databasename='dbc';
  3. Calculate 20-30% of DBC MaxPerm to use as the perm value in the following step.
  4. Create the spool reserve database:
    create database Spool_Reserve from dbc as perm=12E12;
    where perm=12E12 can be customized for your system.