Teradata Package for R Function Reference | 17.00 - td_get_context - Teradata Package for R - Look here for syntax, methods and examples for the functions included in the Teradata Package for R.

Teradata® Package for R Function Reference

Product
Teradata Package for R
Release Number
17.00
Published
July 2021
Language
English (United States)
Last Update
2023-08-08
dita:id
B700-4007
NMT
no
Product Category
Teradata Vantage
Get the current context

Description

Returns a named list of attributes in an existing Teradata context.

Usage

td_get_context()

Value

A named list containing attributes to the current context. NULL if a context does not exist.

See Also

td_create_context , td_set_context

Examples


td_create_context(dsn = "TeradataDSN")
context <- td_get_context()

# To retrieve the connection in the current context, use
td_get_context()$connection

# To retrieve the temorary database in the current context, use
td_get_context()$temp.database

# To retrieve the default database in the current context, use
td_get_context()$database

td_remove_context()