makeTempTableName: Make Aster temporary table name.

Description Usage Arguments Value See Also Examples

View source: R/misc.R

Description

Make Aster temporary table name.

Usage

1
makeTempTableName(prefix = NULL, n = 20, schema = NULL)

Arguments

prefix

Table name will always start with toa_temp_ followed by prefix (if exists).

n

non-negative integer giving number of random characters to include in the name.

schema

Aster database schema table should belong to.

Table name generated will always begin with 'toa_temp_' followed by prefix (if not NULL) and n random alpha-numeric characters. Beware that total length can not exceed than 63 (Aster limit on table name length).

Value

character string suitable for Aster temporary table name

See Also

getTableSummary

Examples

1
tempTableName = makeTempTableName("centroids", 20)

toaster documentation built on May 30, 2017, 3:51 a.m.