Returns an R list representing the column definition for an instance of the CLOB_REFERENCE_DT data type with the given attributes, to use with the tdr.SetOutputColDef function.
Syntax
tdr.Clob(chartype, length)
Syntax Elements
- chartype
- Parameter type: string
The character set for the CLOB column being defined.
- length
- Parameter type: integer
The number of characters to allocate for the column.
Example: Retrieve a Column Definition For the CLOB_REFERENCE_DT Type
coldef <- list(col= tdr.Clob("LATIN_CT", 2097088000)); tdr.SetOutputColDef(stream, coldef);