SetSessionAccount Function | Application Programming Reference | Vantage - SetSessionAccount - Advanced SQL Engine - Teradata Database

Application Programming Reference

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-22
dita:mapPath
cpn1571792172880.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1090
lifecycle
previous
Product Category
Teradata Vantageā„¢

Purpose

Changes the account string for the session or for the request.

Definition

REPLACE FUNCTION SetSessionAccount
  (HostIdIn    SMALLINT,
   SessionNoIn INTEGER,
   NewAcctString TD_ANYTYPE,
   EntireSession VARCHAR(1) CHARACTER SET LATIN
  )
RETURNS VARCHAR(128) CHARACTER SET UNICODE
          .
          .
          .
;

Input Parameters

Parameter Description
HostIdIn Logical ID of a host (or client) with sessions logged on.
SessionNoIn Number of the specified session.
NewAcctString Account string for the session or request.
EntireSession Indicator of how the new account or priority affects requests for a specified session.

If you specify Y or y, the change applies to all current and future requests for a specified session. If no requests or steps are executing, the new account or priority takes effect at the next request, and the DBC.SessionTbl table reflects the new account or priority for the current session.

If you specify NULL, blank, N, or n, the change applies only to the current request for the specified session. If no request is executing, the next request for the specified session has the old account/priority.

Usage Notes - SetSessionAccount

The SetSessionAccount function provides similar functionality to the PMPC SET SESSION ACCOUNT request. For information about this interface, see SET SESSION ACCOUNT.

Return Value

This function returns the old account string.

Example: Using SetSessionAccount with MonitorSession

BTEQ -- Enter your DBC/SQL request or BTEQ command:
SELECT SetSessionAccount(Hostid, sessionno, 'Accountx','Y')
FROM TABLE (MonitorSession(1,'twmuser3',0)) AS t1;
SELECT SetSessionAccount(Hostid, sessionno, 'Accountx','Y')
FROM TABLE (MonitorSession(1,'twmuser3',0)) AS t1;
 *** Query completed. One row found. One column returned.
 *** Total elapsed time was 1 second.
SetSessionAccount(HostId,SessionNo,'Accountx','Y')
--------------------------------------------------
ACCOUNT3 

Example: Using SetSessionAccount

BTEQ -- Enter your DBC/SQL request or BTEQ command:
SELECT SetSessionAccount(1, 4461, 'Account3','y');
SELECT SetSessionAccount(1, 4461, 'Account3','y');
 *** Query completed. One row found. One column returned.
 *** Total elapsed time was 1 second.
SetSessionAccount(1,4461,'Account3','y')
----------------------------------------
ACCOUNTX