create Method | Spark SQL Initiator Connector | Teradata QueryGrid - create - Teradata QueryGrid

Teradata® QueryGrid™ Installation and User Guide

Product
Teradata QueryGrid
Release Number
2.19
Published
July 2022
Language
English (United States)
Last Update
2022-07-28
dita:mapPath
jpf1654813554544.ditamap
dita:ditavalPath
ft:empty
dita:id
lxg1591800469257
Product Category
Analytical Ecosystem

You can use the create method to create non-native tables (permanent or temporary) to represent target tables. If the non-native table name is in the form of db.tb1 (default.nn1 in the example), a permanent non-native table is created. If the database is not part of the non-native name, a temporary non-native table is created (nn2 in the example). Temporary tables in Spark SQL only exist during the current session and cannot be associated with a database.

The following example shows the Spark SQL initiator using the CREATE statement to create non-native tables:
scala> s1.create("default.nn1","user1.players")

scala> s1.create("nn2","default.test")