DB2 SQL GLOBAL VARIABLES
1 min readJul 21, 2021
GLOBAL VARIABLES
- GLOBAL VARIABLES are database objects to save a single value at a time(like DTAARA object)
- They can be accessed and modified using SQL statements.
- Their definition (only definition, not actual value) is stored in the database catalogs.
- The reason for this is that global variables have a session scope.
- This means that every session can use the GLOBAL VARIABLES that exist in the catalogs, but each session has its own private value that it can manipulate and use.
- No session can access the GLOBAL VARIABLE’s value of another session.
- CREATE VARIABLE statement is used to create new GLOBAL VARIABLES.
- These are very useful when calling a stored procedure with OUT/INOUT parameters.
Example:
Create Global variable
CREATE VARIABLE myCounter INT DEFAULT 01
User Global variable
SELECT EMPNO, LASTNAME, CASE WHEN myCounter = 1 THEN SALARY ELSE NULL END FROM EMPLOYEE WHERE WORKDEPT = ’A00’
Change Value of GLOBAL VARIABLE
SQL SET command can be used to change the value of GLOBAL VARIABLE
SET myCounter = 29
Check Value of GLOBAL VARIABLE
You can use any SELECT statement to view the value of GLOBAL VARIABLE.
SELECT myCounter from SYSIBM.SYSDUMMY1
DROP VARIABLE
To delete GLOBAL VARIABLE, use DROP VARIABLE
DROP VARIABLE myCounter