command cdb_loadTable pInputA


Summary

This command will load a table into memory so it can be accessed through other CDB commands and functions. LoadTable must be called prior to calling other CDB commands and functions.

Inputs

API Version

Examples

local tInputA

put "customers" into tInputA["cdbTableName"]

cdb_loadTable tInputA
# Table "customers" is loaded in memory and can now be used 
local tInputA

put "*" into tInputA["cdbTableName"]

cdb_loadTable tInputA
#All tables are now loaded